1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

mgr/mgr_module:delete invalid judgment

Signed-off-by: dengchl01 <dengchl01@inspur.com>
This commit is contained in:
dengchl01 2021-06-09 16:59:51 +08:00
parent a5fd875665
commit 70c6a1dba0

View File

@ -92,13 +92,9 @@ class Module(MgrModule):
seconds -= seconds % predicted_frequency
seconds += predicted_frequency
next_predicted = datetime.datetime.utcfromtimestamp(seconds)
if last_predicted:
self.log.debug('Last scrape %s, next scrape due %s',
last_predicted.strftime(TIME_FORMAT),
next_predicted.strftime(TIME_FORMAT))
else:
self.log.debug('Last scrape never, next scrape due %s',
next_predicted.strftime(TIME_FORMAT))
self.log.debug('Last scrape %s, next scrape due %s',
last_predicted.strftime(TIME_FORMAT),
next_predicted.strftime(TIME_FORMAT))
if now >= next_predicted:
self.predict_all_devices()
last_predicted = now