fix Timer bug

This commit is contained in:
zhiyong 2025-05-14 09:39:14 +08:00
parent 289fc846c1
commit e79d622b2c

View File

@ -163,8 +163,7 @@ class RealTraderManager:
threading.Timer(
60,
self.check_and_retry,
args=(order_id, strategy_name),
name=f"CheckOrder-{order_id}"
args=(order_id, strategy_name)
).start()
return {"success": True, "order_id": order_id}