55 lines
1.9 KiB
Diff
55 lines
1.9 KiB
Diff
|
|
From b0af4890cd131f33ab85708c75742f0a9680705c Mon Sep 17 00:00:00 2001
|
||
|
|
From: shixuantong <shixuantong1@huawei.com>
|
||
|
|
Date: Sat, 22 Mar 2025 10:38:30 +0800
|
||
|
|
Subject: [PATCH] fix period task some bugs
|
||
|
|
|
||
|
|
---
|
||
|
|
src/services/syssentry/cron_process.py | 6 ++----
|
||
|
|
1 file changed, 2 insertions(+), 4 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/src/services/syssentry/cron_process.py b/src/services/syssentry/cron_process.py
|
||
|
|
index 204d4f3..fab350e 100644
|
||
|
|
--- a/src/services/syssentry/cron_process.py
|
||
|
|
+++ b/src/services/syssentry/cron_process.py
|
||
|
|
@@ -59,7 +59,6 @@ class PeriodTask(InspectTask):
|
||
|
|
self.result_info["details"] = {}
|
||
|
|
if not self.period_enabled:
|
||
|
|
self.period_enabled = True
|
||
|
|
- self.upgrade_period_timestamp()
|
||
|
|
|
||
|
|
if self.conflict != 'up':
|
||
|
|
ret = self.check_conflict()
|
||
|
|
@@ -87,6 +86,7 @@ class PeriodTask(InspectTask):
|
||
|
|
self.runtime_status = FAILED_STATUS
|
||
|
|
return False, "period task start popen failed, invalid command"
|
||
|
|
finally:
|
||
|
|
+ self.upgrade_period_timestamp()
|
||
|
|
if isinstance(logfile, io.TextIOWrapper) and not logfile.closed:
|
||
|
|
logfile.close()
|
||
|
|
|
||
|
|
@@ -127,7 +127,6 @@ class PeriodTask(InspectTask):
|
||
|
|
res, _ = self.start()
|
||
|
|
if res:
|
||
|
|
set_runtime_status(self.name, RUNNING_STATUS)
|
||
|
|
- self.upgrade_period_timestamp()
|
||
|
|
|
||
|
|
|
||
|
|
def period_tasks_handle():
|
||
|
|
@@ -142,7 +141,7 @@ def period_tasks_handle():
|
||
|
|
logging.debug("period not enabled")
|
||
|
|
continue
|
||
|
|
|
||
|
|
- if not task.onstart:
|
||
|
|
+ if not task.onstart and task.last_exec_timestamp == 0:
|
||
|
|
logging.debug("period onstart not enabled, task: %s", task.name)
|
||
|
|
task.runtime_status = EXITED_STATUS
|
||
|
|
continue
|
||
|
|
@@ -153,4 +152,3 @@ def period_tasks_handle():
|
||
|
|
res, _ = task.start()
|
||
|
|
if res:
|
||
|
|
set_runtime_status(task.name, RUNNING_STATUS)
|
||
|
|
- task.upgrade_period_timestamp()
|
||
|
|
--
|
||
|
|
2.27.0
|
||
|
|
|