Use "127.0.0.1" instead of "localhost" when starting the SignalReceiver
This commit is contained in:
parent
56c496dc5d
commit
db736c9075
|
@ -61,7 +61,7 @@ class SignalReceiver(ThreadingMixIn, SimpleXMLRPCServer.SimpleXMLRPCServer):
|
|||
|
||||
def start_server(self, port=None):
|
||||
# Setup the xmlrpc server
|
||||
host = "localhost"
|
||||
host = "127.0.0.1"
|
||||
if self.remote == True:
|
||||
host = ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue