Skip to content

Commit

Permalink
Disable debug code.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jan 24, 2018
1 parent 5fe0067 commit c90fcb0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sippy/Rtp_proxy_client_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ def connect(self):
address = (self.userv.address[0][1:-1], self.userv.address[1])
else:
address = self.userv.address
print('_RTPPLWorker.connect', address)
self.s.connect(address)
print('_RTPPLWorker.connect: done')

def send_raw(self, command, _recurse = 0, stime = None):
if _recurse > _MAX_RECURSE:
Expand Down Expand Up @@ -146,7 +144,7 @@ class Rtp_proxy_client_stream(Rtp_proxy_client_net):

def __init__(self, global_config, address = '/var/run/rtpproxy.sock', \
bind_address = None, nworkers = 1, family = socket.AF_UNIX):
print('Rtp_proxy_client_stream.__init__', address, bind_address, nworkers, family)
#print('Rtp_proxy_client_stream.__init__', address, bind_address, nworkers, family)
if family == socket.AF_UNIX:
self.is_local = True
self.address = address
Expand Down

0 comments on commit c90fcb0

Please sign in to comment.