You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2014/05/13 18:31:03 UTC

svn commit: r1594269 - /hive/trunk/service/src/test/org/apache/hive/service/cli/thrift/ThriftCLIServiceTest.java

Author: hashutosh
Date: Tue May 13 16:31:02 2014
New Revision: 1594269

URL: http://svn.apache.org/r1594269
Log:
HIVE-6908 : TestThriftBinaryCLIService.testExecuteStatementAsync has intermittent failures (Szehon Ho via Ashutosh Chauhan)

Modified:
    hive/trunk/service/src/test/org/apache/hive/service/cli/thrift/ThriftCLIServiceTest.java

Modified: hive/trunk/service/src/test/org/apache/hive/service/cli/thrift/ThriftCLIServiceTest.java
URL: http://svn.apache.org/viewvc/hive/trunk/service/src/test/org/apache/hive/service/cli/thrift/ThriftCLIServiceTest.java?rev=1594269&r1=1594268&r2=1594269&view=diff
==============================================================================
--- hive/trunk/service/src/test/org/apache/hive/service/cli/thrift/ThriftCLIServiceTest.java (original)
+++ hive/trunk/service/src/test/org/apache/hive/service/cli/thrift/ThriftCLIServiceTest.java Tue May 13 16:31:02 2014
@@ -269,6 +269,7 @@ public abstract class ThriftCLIServiceTe
     opStatus = client.getOperationStatus(opHandle);
     assertNotNull(opStatus);
     isQueryRunning = true;
+    pollTimeout = System.currentTimeMillis() + 100000;
     while(isQueryRunning) {
       // Break if polling times out
       if (System.currentTimeMillis() > pollTimeout) {