[asterisk-scf-commits] asterisk-scf/integration/testsuite.git branch "review" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Tue May 31 09:40:30 CDT 2011
branch "review" has been updated
via 61bf089ec9b671e8a79b3b1e81d1e6b8af68d0c7 (commit)
from 35b98c9ab4bd1f31eda4adc7e0faff272c656a6b (commit)
Summary of changes:
plugins/sipp.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 61bf089ec9b671e8a79b3b1e81d1e6b8af68d0c7
Author: Darren Sessions <dsessions at digium.com>
Date: Tue May 31 09:40:27 2011 -0500
Fixed an issue with the SIPp configuration plugin where a port was being specified although SIPp doesnt recognize the port and defaults to 5060. Caught by mmichelson.
diff --git a/plugins/sipp.py b/plugins/sipp.py
index 71c103d..ae96b29 100644
--- a/plugins/sipp.py
+++ b/plugins/sipp.py
@@ -75,7 +75,7 @@ class plugin(TestSuite.BaseClass):
execCmd = self._execBuilder(execCmd, '-r %s' % config['cps'])
if 'duration' in config:
execCmd = self._execBuilder(execCmd, '-d %s' % config['duration'])
- if 'targethost' in config and 'targetport' in config:
- execCmd = self._execBuilder(execCmd, '%s:%s' % (config['targethost'], config['targetport']))
+ if 'targethost' in config:
+ execCmd = self._execBuilder(execCmd, '%s' % config['targethost'])
return execCmd
-----------------------------------------------------------------------
--
asterisk-scf/integration/testsuite.git
More information about the asterisk-scf-commits
mailing list