nebulabroadcast / nebula-tutorial

The best starting point for anyone looking to familiarize themselves with Nebula
6 stars 1 forks source link

Error on aborting the rundown. #4

Open llek1000 opened 1 year ago

llek1000 commented 1 year ago

Hi! I am experiencing an error when trying to abort a rundown, after clicking the abort button nothing happens. The worker throws this error:

nebula-tutorial-worker-1    | Traceback (most recent call last):
nebula-tutorial-worker-1    |       File "/opt/nebula/services/play/request_handler.py", line 51, in do_POST
nebula-tutorial-worker-1    |         result = self.server.methods[method](**postvars)
nebula-tutorial-worker-1    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
nebula-tutorial-worker-1    |       File "/opt/nebula/services/play/play.py", line 230, in abort
nebula-tutorial-worker-1    |         return self.controller.abort(**kwargs)
nebula-tutorial-worker-1    |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
nebula-tutorial-worker-1    |       File "/opt/nebula/services/play/conti/conti_controller.py", line 125, in abort
nebula-tutorial-worker-1    |         self.conti.abort()
nebula-tutorial-worker-1    |       File "/usr/local/lib/python3.11/site-packages/conti/__init__.py", line 228, in abort
nebula-tutorial-worker-1    |         self.current.stop()
nebula-tutorial-worker-1    |       File "/usr/local/lib/python3.11/site-packages/conti/source.py", line 197, in stop
nebula-tutorial-worker-1    |         os.kill(self.proc.pid, signal.SIGKILL)
nebula-tutorial-worker-1    |     ProcessLookupError: [Errno 3] No such process

Apparently it cannot find the conti process, though, I do not really understand it that well :)