sysSentry/fix-period-task-some-bugs.patch
2025-03-29 14:42:03 +08:00

55 lines
1.9 KiB
Diff

From 91385c657853f2cd9f2aebd9decc7c4438b29f23 Mon Sep 17 00:00:00 2001
From: shixuantong <shixuantong1@huawei.com>
Date: Sat, 29 Mar 2025 10:41:35 +0800
Subject: [PATCH] fix period task some bugs
---
src/python/syssentry/cron_process.py | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/python/syssentry/cron_process.py b/src/python/syssentry/cron_process.py
index 50780b3..cd688a4 100644
--- a/src/python/syssentry/cron_process.py
+++ b/src/python/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)
continue
@@ -152,4 +151,3 @@ def period_tasks_handle():
res, _ = task.start()
if res:
set_runtime_status(task.name, RUNNING_STATUS)
- task.upgrade_period_timestamp()
--
2.27.0