Repository: impala
Updated Branches:
refs/heads/master ce09269fd -> 5960d1b36
Fix test_query_concurrency exception handling.
Fixes use of an undefined variable.
I saw the following message in a build failure, which
clearly wasn't intended:
MainThread: Debug webpage not yet available.
Exception in thread Thread-862:
Traceback (most recent call last):
File "/usr/lib64/python2.7/threading.py", line 811, in __bootstrap_inner
self.run()
File "/usr/lib64/python2.7/threading.py", line 764, in run
self.__target(*self.__args, **self.__kwargs)
File
"/data/jenkins/workspace/impala-asf-2.x-exhaustive-rhel7/repos/Impala/tests/custom_cluster/test_query_concurrency.py",
line 58, in poll_query_page
except e:
NameError: global name 'e' is not defined
Change-Id: If507409b8945b16a9510bb6195343eed7d8538fc
Reviewed-on: http://gerrit.cloudera.org:8080/10049
Reviewed-by: Alex Behm <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/impala/commit/bc6c3c74
Tree: http://git-wip-us.apache.org/repos/asf/impala/tree/bc6c3c74
Diff: http://git-wip-us.apache.org/repos/asf/impala/diff/bc6c3c74
Branch: refs/heads/master
Commit: bc6c3c7447592ed2f17de41d8002207e7aee3d57
Parents: ce09269
Author: Philip Zeyliger <[email protected]>
Authored: Thu Apr 12 13:00:06 2018 -0700
Committer: Impala Public Jenkins <[email protected]>
Committed: Fri Apr 13 23:51:36 2018 +0000
----------------------------------------------------------------------
tests/custom_cluster/test_query_concurrency.py | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/impala/blob/bc6c3c74/tests/custom_cluster/test_query_concurrency.py
----------------------------------------------------------------------
diff --git a/tests/custom_cluster/test_query_concurrency.py
b/tests/custom_cluster/test_query_concurrency.py
index 53bc72b..63cb173 100644
--- a/tests/custom_cluster/test_query_concurrency.py
+++ b/tests/custom_cluster/test_query_concurrency.py
@@ -16,13 +16,9 @@
# under the License.
import pytest
-import requests
import time
-from time import localtime, strftime
from threading import Thread
-from tests.beeswax.impala_beeswax import ImpalaBeeswaxException
from tests.common.custom_cluster_test_suite import CustomClusterTestSuite
-from tests.common.impala_cluster import ImpalaCluster
from tests.common.skip import SkipIfBuildType
@SkipIfBuildType.not_dev_build
@@ -55,7 +51,7 @@ class TestQueryConcurrency(CustomClusterTestSuite):
while time.time() - start < self.POLLING_TIMEOUT_S:
try:
impalad.service.read_debug_webpage("query_plan?query_id=" + query_id)
- except e:
+ except Exception:
pass
time.sleep(1)