Damien King
Damien King
Hi @philippeowagner, Sorry should have included in the first place... Django==1.10.3 django-background-tasks==1.1.13 Postgres ==9.6 All running on Windows Server 2012 R2 settings.py BACKGROUND_TASK_RUN_ASYNC = True BACKGROUND_TASK_ASYNC_THREADS = 2 All other...
Can confirm: ``` from psutil import pid_exists def locked_by_pid_running(self): """ Check if the locked_by process is still running. """ if self.locked_by: if pid_exists(int(self.locked_by)): return True else: return False else: return...