You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by br...@apache.org on 2014/08/21 17:01:41 UTC

svn commit: r1619426 - /hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java

Author: brock
Date: Thu Aug 21 15:01:40 2014
New Revision: 1619426

URL: http://svn.apache.org/r1619426
Log:
HIVE-7824 - CLIServer.getOperationStatus eats ExceutionException (Brock reviewed by Szehon)

Modified:
    hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java

Modified: hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java
URL: http://svn.apache.org/viewvc/hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java?rev=1619426&r1=1619425&r2=1619426&view=diff
==============================================================================
--- hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java (original)
+++ hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java Thu Aug 21 15:01:40 2014
@@ -377,7 +377,7 @@ public class CLIService extends Composit
         LOG.trace(opHandle + ": The background operation was cancelled", e);
       } catch (ExecutionException e) {
         // The background operation thread was aborted
-        LOG.trace(opHandle + ": The background operation was aborted", e);
+        LOG.warn(opHandle + ": The background operation was aborted", e);
       } catch (InterruptedException e) {
         // No op, this thread was interrupted
         // In this case, the call might return sooner than long polling timeout