Skip to content

Commit

Permalink
fix:修复icp缓存不过期问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mouday committed Feb 1, 2024
1 parent 31c2e36 commit 0d9dcf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domain_admin/model/domain_icp_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ def update_time_label(self):

@property
def is_expired(self):
return self.expire_time < datetime.now()
return datetime_util.is_less_than(self.expire_time, datetime.now())

0 comments on commit 0d9dcf0

Please sign in to comment.