@@ -206,95 +206,6 @@ def submit_job(self, service, program, event=None):
206
206
websocket_manager .publish ("event_update" , self .get_event_updates ())
207
207
future .add_done_callback (lambda f :self ._process_future (f , service ))
208
208
209
- # For debugging purposes we can monitor the execution time of the service. (comment out above and uncomment below)
210
- # def submit_job(self, service, program, event=None):
211
- # """
212
- # Submits a job to be executed by the service.
213
-
214
- # Args:
215
- # service (type): The service class to execute.
216
- # program (Program): The program containing the service.
217
- # item (Event, optional): The event item to process. Defaults to None.
218
- # """
219
- # log_message = f"Submitting service {service.__name__} to be executed"
220
- # if event:
221
- # log_message += f" with {event.log_message}"
222
- # logger.debug(log_message)
223
-
224
- # cancellation_event = threading.Event()
225
- # executor = self._find_or_create_executor(service)
226
-
227
- # # Add start time to track execution duration
228
- # start_time = datetime.now()
229
-
230
- # def _monitor_execution(future):
231
- # """Monitor execution time and log if taking too long"""
232
- # while not future.done():
233
- # execution_time = (datetime.now() - start_time).total_seconds()
234
- # if execution_time > 180: # 3 minutes
235
- # current_thread = None
236
- # for thread in threading.enumerate():
237
- # if thread.name.startswith(service.__name__) and not thread.name.endswith('_monitor'):
238
- # current_thread = thread
239
- # break
240
-
241
- # if current_thread:
242
- # # Get stack frames for the worker thread
243
- # frames = sys._current_frames()
244
- # thread_frame = None
245
- # for thread_id, frame in frames.items():
246
- # if thread_id == current_thread.ident:
247
- # thread_frame = frame
248
- # break
249
-
250
- # if thread_frame:
251
- # stack_trace = ''.join(traceback.format_stack(thread_frame))
252
- # else:
253
- # stack_trace = "Could not get stack trace for worker thread"
254
- # else:
255
- # stack_trace = "Could not find worker thread"
256
-
257
- # logger.warning(
258
- # f"Service {service.__name__} execution taking longer than 3 minutes!\n"
259
- # f"Event: {event.log_message if event else 'No event'}\n"
260
- # f"Execution time: {execution_time:.1f} seconds\n"
261
- # f"Thread name: {current_thread.name if current_thread else 'Unknown'}\n"
262
- # f"Thread alive: {current_thread.is_alive() if current_thread else 'Unknown'}\n"
263
- # f"Stack trace:\n{stack_trace}"
264
- # )
265
-
266
- # # Cancel the future and kill the thread
267
- # future.cancellation_event.set()
268
- # future.cancel()
269
- # if current_thread:
270
- # logger.warning(f"Killing thread {current_thread.name} due to timeout")
271
- # self._futures.remove(future)
272
- # if event:
273
- # self.remove_event_from_running(event)
274
- # return # Exit the monitoring thread
275
-
276
- # time.sleep(60) # Check every minute
277
-
278
- # future = executor.submit(db_functions.run_thread_with_db_item,
279
- # program.all_services[service].run,
280
- # service, program, event, cancellation_event)
281
-
282
- # # Start monitoring thread
283
- # monitor_thread = threading.Thread(
284
- # target=_monitor_execution,
285
- # args=(future,),
286
- # name=f"{service.__name__}_monitor",
287
- # daemon=True
288
- # )
289
- # monitor_thread.start()
290
-
291
- # future.cancellation_event = cancellation_event
292
- # if event:
293
- # future.event = event
294
- # self._futures.append(future)
295
- # sse_manager.publish("event_update", self.get_event_updates())
296
- # future.add_done_callback(lambda f: self._process_future(f, service))
297
-
298
209
def cancel_job (self , item_id : str , suppress_logs = False ):
299
210
"""
300
211
Cancels a job associated with the given item.
@@ -343,7 +254,7 @@ def next(self) -> Event:
343
254
if self ._queued_events :
344
255
with self .mutex :
345
256
self ._queued_events .sort (key = lambda event : event .run_at )
346
- if datetime .now () >= self ._queued_events [0 ].run_at :
257
+ if self . _queued_events and datetime .now () >= self ._queued_events [0 ].run_at :
347
258
event = self ._queued_events .pop (0 )
348
259
return event
349
260
raise Empty
0 commit comments