[asterisk-commits] mjordan: testsuite/asterisk/trunk r4291 - in /asterisk/trunk/tests/channels/i...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Oct 27 17:03:17 CDT 2013


Author: mjordan
Date: Sun Oct 27 17:03:16 2013
New Revision: 4291

URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=4291
Log:
Don't require calltokens for the IAX2 hangupcause test

A test failure was recorded for the IAX2 hangupcause test on the 64-bit
build agent for CentOS 6. Upon inspecting the logs, it appears as if Asterisk
instance 2 rejected an IAX2 call from Asterisk instance 1 due to the call
token's timestamp in the inbound request having a time that was out of bounds
for what Asterisk instance 2 deemed valid. This was a sporadic failure that
is due in no small part to the general wonkiness that is that particular build
agent. This patch specifies that call tokens are not required for the users
involved in this test, as the timing sources on that build agent are not
exactly reliable.

Modified:
    asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast1/iax.conf
    asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast2/iax.conf

Modified: asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast1/iax.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast1/iax.conf?view=diff&rev=4291&r1=4290&r2=4291
==============================================================================
--- asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast1/iax.conf (original)
+++ asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast1/iax.conf Sun Oct 27 17:03:16 2013
@@ -7,6 +7,7 @@
 secret = alice
 host = 127.0.0.2
 context = alice-incoming
+requirecalltoken = no
 
 [bob]
 type = friend
@@ -14,4 +15,4 @@
 secret = bob
 host = 127.0.0.2
 context = bob-incoming
-
+requirecalltoken = no

Modified: asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast2/iax.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast2/iax.conf?view=diff&rev=4291&r1=4290&r2=4291
==============================================================================
--- asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast2/iax.conf (original)
+++ asterisk/trunk/tests/channels/iax2/hangupcause/configs/ast2/iax.conf Sun Oct 27 17:03:16 2013
@@ -7,6 +7,7 @@
 secret = alice
 context = to-bob
 host = 127.0.0.1
+requirecalltoken = no
 
 [bob]
 type = friend
@@ -14,4 +15,5 @@
 secret = bob
 context = to-bob
 host = 127.0.0.1
+requirecalltoken = no
 




More information about the asterisk-commits mailing list