[asterisk-commits] rmudgett: testsuite/asterisk/trunk r3171 - /asterisk/trunk/lib/python/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Apr 6 10:40:22 CDT 2012
Author: rmudgett
Date: Fri Apr 6 10:40:17 2012
New Revision: 3171
URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=3171
Log:
Don't capture SIPp stdout content.
The stdout output from SIPp is not that useful (Repetitious screen output)
and caused a crash on my system. I think it was because the SIPp process
had exited and Python attempted to access the output after it was
destroyed.
Modified:
asterisk/trunk/lib/python/asterisk/sipp.py
Modified: asterisk/trunk/lib/python/asterisk/sipp.py
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/lib/python/asterisk/sipp.py?view=diff&rev=3171&r1=3170&r2=3171
==============================================================================
--- asterisk/trunk/lib/python/asterisk/sipp.py (original)
+++ asterisk/trunk/lib/python/asterisk/sipp.py Fri Apr 6 10:40:17 2012
@@ -148,7 +148,6 @@
def __output_callback(result):
""" Callback from getProcessOutputAndValue """
out, err, code = result
- logger.debug(out)
logger.debug("Launching SIPp Scenario %s exited %d"
% (self.scenario['scenario'], code))
if (code == 0):
More information about the asterisk-commits
mailing list