Commit d5c32164 authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

Remove debugging connection message

parent 717eed23
......@@ -409,11 +409,12 @@ class RPCClient(SocketIO):
def accept(self):
working_sock, address = self.listening_sock.accept()
if self.debugging:
print>>sys.__stderr__, "** Connection request from ", address
if address[0] == '127.0.0.1':
print>>sys.__stderr__, "Idle accepted connection from ", address
SocketIO.__init__(self, working_sock)
else:
print>>sys.__stderr__, "Invalid host: ", address
print>>sys.__stderr__, "** Invalid host: ", address
raise socket.error
def get_remote_proxy(self, oid):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment