Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df0f08b commit c040323Copy full SHA for c040323
1 file changed
lib/utils/xmlrpc.py
@@ -31,6 +31,8 @@ def __init__(self, port):
31
32
self.server = SimpleXMLRPCServer(addr=("", self.port), logRequests=False, allow_none=True, encoding=UNICODE_ENCODING)
33
for _ in dir(self):
34
+ if _.startswith("serve"):
35
+ continue
36
if not _.startswith('_') and isinstance(getattr(self, _), types.MethodType):
37
self.server.register_function(getattr(self, _))
38
logger.info("Registering RPC methods: %s" % str(self.server.system_listMethods()).strip("[]"))
0 commit comments