Browse Source

Fix hang where blocked don't fire when there is no post on the last job

Nathaniel van Diepen 4 years ago
parent
commit
e250a161b1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      backup/__init__.py

+ 1 - 0
backup/__init__.py

@@ -286,6 +286,7 @@ class Job(object):
             self.setState(Job.ENDING)
             if self.post is None:
                 self.setState(Job.SUCCESSFUL)
+                Job.initPool()
                 return
 
         else: