|
@@ -43,15 +43,15 @@ class InboundClient:
|
|
|
self.logger = app.logger
|
|
|
self.bot_agent = agent
|
|
|
self.cache = Cache(app)
|
|
|
+ self.dataHandleServer = DataHandleServer(app)
|
|
|
self.handler_table = self.scan_esl_event_handlers()
|
|
|
self.default_event_handler = DefaultEslEventHandler(self, self.bot_agent)
|
|
|
self.host, self.port, self.password = SERVE_HOST, '8021', '4918257983818884358'
|
|
|
self.executors = {x: concurrent.futures.ThreadPoolExecutor(max_workers=1) for x in range(self.thread_num)}
|
|
|
self.delay_action_executor = concurrent.futures.ThreadPoolExecutor(max_workers=5)
|
|
|
self.delay_action_scheduler = BackgroundScheduler()
|
|
|
- self.dataHandleServer = DataHandleServer(app)
|
|
|
- # self.delay_action_scheduler.add_job(self.submit_delay_action, 'interval', seconds=1, max_instances=1)
|
|
|
- # self.delay_action_scheduler.start()
|
|
|
+ self.delay_action_scheduler.add_job(self.submit_delay_action, 'interval', seconds=1, max_instances=1)
|
|
|
+ self.delay_action_scheduler.start()
|
|
|
threading.Thread(target=self.start, args=()).start()
|
|
|
|
|
|
def submit_delay_action(self):
|
|
@@ -135,6 +135,7 @@ class InboundClient:
|
|
|
def do_delay_action(self, action, message):
|
|
|
delay_action = DelayAction.from_json(message)
|
|
|
flag = self.cache.lock_delay_action(delay_action.uuid)
|
|
|
+ self.logger.info("do_delay_action::action=%s, flag=%s", action, flag)
|
|
|
if not flag:
|
|
|
self.logger.info("异步延迟执行操作重复 action:%s msg:%s", action, message)
|
|
|
return
|