From b772a26680895ecf102b524444623fc10c4d183d Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Wed, 9 Apr 2014 14:02:04 +0000 Subject: distbuild: Improve logging of connections and objects New DistbuildSocket class that wraps socket.socket(), providing a descriptive repr() handler showing where the socket is connected, and providing a couple of helper methods for fetching local and remote endpoint names. This commit also adds a descriptive repr() handler to a few other objects (mostly giving socket connection details). --- distbuild-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'distbuild-helper') diff --git a/distbuild-helper b/distbuild-helper index 7399fb59..08e30f10 100755 --- a/distbuild-helper +++ b/distbuild-helper @@ -309,7 +309,7 @@ class DistributedBuildHelper(cliapp.Application): addr = self.settings['parent-address'] port = self.settings['parent-port'] - conn = socket.socket() + conn = distbuild.create_socket() conn.connect((addr, port)) helper = HelperMachine(conn) helper.debug_messages = self.settings['debug-messages'] -- cgit v1.2.1