From: Loic Dachary Date: Tue, 25 Aug 2015 08:17:05 +0000 (+0200) Subject: openstack: remove debug line that does not print X-Git-Tag: 1.1.0~833^2~5 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f823edb4f30a90054507abec9273e5da7668c41c;p=teuthology.git openstack: remove debug line that does not print It misses the IP that was set previous to 20bdef4b7892178d5e0fb8fa23beae52ba143eb2 Signed-off-by: Loic Dachary --- diff --git a/teuthology/openstack/__init__.py b/teuthology/openstack/__init__.py index 2266984411..6d2945cb9d 100644 --- a/teuthology/openstack/__init__.py +++ b/teuthology/openstack/__init__.py @@ -358,7 +358,6 @@ ssh access : ssh {identity}{username}@{ip} # logs in /usr/share/nginx/html if self.key_filename: log.debug("ssh overriding key with " + self.key_filename) client_args['key_filename'] = self.key_filename - log.debug("ssh " + self.username + "@" + str(ip) + " " + command) client = connection.connect(**client_args) stdin, stdout, stderr = client.exec_command(command) stdout.channel.settimeout(300)