Skip to content

Commit 9efd709

Browse files
author
Dan
committed
Remove breakpoints
1 parent cb3e1a5 commit 9efd709

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

examples/parallel_commands.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
import datetime
33

44
output = []
5-
host = '192.168.1.2'
5+
host = 'localhost'
66
hosts = [host]
77
client = ParallelSSHClient(hosts)
8-
import ipdb; ipdb.set_trace()
98

109
# Run 10 five second sleeps
1110
cmds = ['sleep 5' for _ in xrange(10)]

pssh/ssh_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ def __init__(self, host,
120120
self.proxy_pkey = proxy_host, proxy_port, proxy_user, \
121121
proxy_password, proxy_pkey
122122
self.proxy_client = None
123-
import ipdb; ipdb.set_trace()
124123
if self.proxy_host and self.proxy_port:
125124
logger.debug("Proxy configured for destination host %s - Proxy host: %s:%s",
126125
self.host, self.proxy_host, self.proxy_port,)

0 commit comments

Comments
 (0)