From 6ce920ab5ea52563aa91b5c54be275384cae7335 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Tue, 5 Feb 2008 15:07:13 -0500 Subject: use socket.getfqdn instead of gethostname for sanity sake --- test/unittest/test_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unittest/test_client.py b/test/unittest/test_client.py index 1d24753..44d59c5 100644 --- a/test/unittest/test_client.py +++ b/test/unittest/test_client.py @@ -13,7 +13,8 @@ import socket class BaseTest: # assume we are talking to localhost - th = socket.gethostname() +# th = socket.gethostname() + th = socket.getfqdn() nforks=1 async=False -- cgit