This commit is contained in:
wuaho 2021-09-17 18:11:56 +08:00
parent 678b1c93c0
commit 15591fd7ae

3
app.py
View File

@ -52,6 +52,7 @@ class XProcess(Process):
obj = getattr(handler_event, type_) obj = getattr(handler_event, type_)
obj(msg) obj(msg)
elif type_ == settings.STOP_SIGNAL: elif type_ == settings.STOP_SIGNAL:
continue
# 1 小时内有效 # 1 小时内有效
if msg.get('#time', 0) + 3600 < int(time.time()): if msg.get('#time', 0) + 3600 < int(time.time()):
continue continue
@ -71,4 +72,4 @@ class XProcess(Process):
while True: while True:
time.sleep(5) time.sleep(5)
print(f'进程{self.partition} 已结束。。。') print(f'消费分区{self.partition} 已结束。。。')