perf: 修改core celery 组件状态 (#12684)

Co-authored-by: feng <1304903146@qq.com>
This commit is contained in:
fit2bot
2024-02-22 14:47:26 +08:00
committed by GitHub
parent d4721e90d5
commit d4e53be7ce
2 changed files with 9 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ logger = get_logger(__file__)
class TerminalStatusMixin:
id: str
type: str
ALIVE_KEY = 'TERMINAL_ALIVE_{}'
status_set: models.Manager
@@ -29,7 +30,7 @@ class TerminalStatusMixin:
@lazyproperty
def load(self):
from ...utils import ComputeLoadUtil
return ComputeLoadUtil.compute_load(self.last_stat)
return ComputeLoadUtil.compute_load(self.last_stat, self.type)
@property
def is_alive(self):