diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index 40b87ab76..4e0e8cb08 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -521,7 +521,7 @@ class ServerMethods(): pass def push_package_to_queue(self, id): - self.core.files.pushPackageToQueue(id) + self.core.files.setPackageLocation(id, 1) def restart_package(self, packid): self.core.files.restartPackage(int(packid)) @@ -568,8 +568,7 @@ class ServerMethods(): def pull_out_package(self, pid): """put package back to collector""" - #@TODO implement - pass + self.core.files.setPackageLocation(pid, 0) def is_captcha_waiting(self): self.core.lastClientConnected = time.time() |