Chandima Prabhath commited on
Commit
27ddf15
·
1 Parent(s): f8e6b2e

Comment out threading for inactivity monitor to prevent unintended execution during startup.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -116,7 +116,7 @@ def inactivity_monitor():
116
  )
117
  last_message_time = time.time()
118
 
119
- threading.Thread(target=inactivity_monitor, daemon=True).start()
120
 
121
  executor = ThreadPoolExecutor(max_workers=4)
122
  def worker():
 
116
  )
117
  last_message_time = time.time()
118
 
119
+ #threading.Thread(target=inactivity_monitor, daemon=True).start()
120
 
121
  executor = ThreadPoolExecutor(max_workers=4)
122
  def worker():