diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-11 20:02:47 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-11 20:02:47 +0200 |
commit | 98f3ed1a9c99a07b15f54b78f521ad84ccbad126 (patch) | |
tree | 4a80604e1d4586891e354c6f83a7e05ac8960bc1 /module | |
parent | pavement build script (diff) | |
download | pyload-98f3ed1a9c99a07b15f54b78f521ad84ccbad126.tar.xz |
working restart core method
Diffstat (limited to 'module')
-rw-r--r-- | module/Api.py | 5 | ||||
-rw-r--r-- | module/remote/thriftbackend/ThriftClient.py | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/module/Api.py b/module/Api.py index 502792cf6..aad61cd5f 100644 --- a/module/Api.py +++ b/module/Api.py @@ -238,9 +238,8 @@ class Api(Iface): self.core.do_kill = True def restart(self): - """Not working, not likely to ever will""" - pass - #self.core.do_restart = True + """Restart pyload core""" + self.core.do_restart = True @permission(PERMS.STATUS) def getLog(self, offset=0): diff --git a/module/remote/thriftbackend/ThriftClient.py b/module/remote/thriftbackend/ThriftClient.py index 7e60d9fdc..74363cf62 100644 --- a/module/remote/thriftbackend/ThriftClient.py +++ b/module/remote/thriftbackend/ThriftClient.py @@ -88,7 +88,7 @@ class ThriftClient: if __name__ == "__main__": - client = ThriftClient(user="User", password="") + client = ThriftClient(user="User", password="pwhere") print client.getServerVersion() print client.statusServer() |