##// END OF EJS Templates
hgcia: accept "queued." xmlrpc return as success
Georg Brandl -
r13551:bbfae32f stable
parent child Browse files
Show More
@@ -198,7 +198,7 b' class hgcia(object):'
198 def sendrpc(self, msg):
198 def sendrpc(self, msg):
199 srv = xmlrpclib.Server(self.ciaurl)
199 srv = xmlrpclib.Server(self.ciaurl)
200 res = srv.hub.deliver(msg)
200 res = srv.hub.deliver(msg)
201 if res is not True:
201 if res is not True and res != 'queued.':
202 raise util.Abort(_('%s returned an error: %s') %
202 raise util.Abort(_('%s returned an error: %s') %
203 (self.ciaurl, res))
203 (self.ciaurl, res))
204
204
General Comments 0
You need to be logged in to leave comments. Login now