Commit bbab9e01 authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_crm: Use cached CreationDate to speed speed up alarm.

parent 1276df4b
...@@ -10,7 +10,7 @@ if portal.ERP5Site_isSupportRequestCreationClosed(): ...@@ -10,7 +10,7 @@ if portal.ERP5Site_isSupportRequestCreationClosed():
date_check_limit = addToDate(DateTime(), to_add={'hour': -1}) date_check_limit = addToDate(DateTime(), to_add={'hour': -1})
if (date_check_limit - hosting_subscription.getCreationDate()) < 0: if (date_check_limit - hosting_subscription.Base_getCachedCreationDate()) < 0:
# Too early to check # Too early to check
return return
...@@ -29,7 +29,7 @@ for instance in software_instance_list: ...@@ -29,7 +29,7 @@ for instance in software_instance_list:
if instance.getSlapState() not in ["start_requested", "stop_requested"]: if instance.getSlapState() not in ["start_requested", "stop_requested"]:
continue continue
if (date_check_limit - instance.getCreationDate()) < 0: if (date_check_limit - instance.Base_getCachedCreationDate()) < 0:
continue continue
computer_partition = instance.getAggregateValue() computer_partition = instance.getAggregateValue()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment