[svn-commits] russell: trunk r253357 - /trunk/main/asterisk.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Mar 18 13:18:47 CDT 2010


Author: russell
Date: Thu Mar 18 13:18:43 2010
New Revision: 253357

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=253357
Log:
Increase CLI command output timeout for asterisk -rx to 60 seconds.

(closes issue #17049)
Reported by: russell
Tested by: russell

Review: https://reviewboard.asterisk.org/r/573/

Modified:
    trunk/main/asterisk.c

Modified: trunk/main/asterisk.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/asterisk.c?view=diff&rev=253357&r1=253356&r2=253357
==============================================================================
--- trunk/main/asterisk.c (original)
+++ trunk/main/asterisk.c Thu Mar 18 13:18:43 2010
@@ -2656,7 +2656,7 @@
 		fds.fd = ast_consock;
 		fds.events = POLLIN;
 		fds.revents = 0;
-		while (ast_poll(&fds, 1, 500) > 0) {
+		while (ast_poll(&fds, 1, 60000) > 0) {
 			char buffer[512] = "", *curline = buffer, *nextline;
 			int not_written = 1;
 




More information about the svn-commits mailing list