summaryrefslogtreecommitdiffstats
path: root/func/minion/server.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-01-23 18:51:33 -0500
committerMichael DeHaan <mdehaan@redhat.com>2008-01-23 18:51:33 -0500
commit33c6e4013874878f05eec593d69e8afdeaae212b (patch)
treee84879dd215ac90d20822ab0574dc1ab99b7ed8a /func/minion/server.py
parent19e4d1ba808cbbe95568271a5b0075b8422e4fb6 (diff)
downloadthird_party-func-33c6e4013874878f05eec593d69e8afdeaae212b.tar.gz
third_party-func-33c6e4013874878f05eec593d69e8afdeaae212b.tar.xz
third_party-func-33c6e4013874878f05eec593d69e8afdeaae212b.zip
Working on async error handling, lots more to do...
(If it hits no exceptions, returns are right, it's the partial error case to deal with next...)
Diffstat (limited to 'func/minion/server.py')
-rwxr-xr-xfunc/minion/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/minion/server.py b/func/minion/server.py
index 1b2a556..7187783 100755
--- a/func/minion/server.py
+++ b/func/minion/server.py
@@ -222,7 +222,7 @@ class FuncSSLXMLRPCServer(AuthedXMLRPCServer.AuthedSSLXMLRPCServer,
return self.get_dispatch_method(method)(*params)
else:
meth = self.get_dispatch_method(method)
- return jobthing.minion_async_run(meth, *params)
+ return jobthing.minion_async_run(meth, params)
def auth_cb(self, request, client_address):
peer_cert = request.get_peer_certificate()