Joe McDonnell created IMPALA-10302:
--------------------------------------
Summary: test_scanners_fuzz.py does not log the random seed
Key: IMPALA-10302
URL: https://issues.apache.org/jira/browse/IMPALA-10302
Project: IMPALA
Issue Type: Bug
Components: Infrastructure
Affects Versions: Impala 4.0
Reporter: Joe McDonnell
When debugging a recent failure on test_scanners_fuzz.py, I noticed that the
log output in the junitxml does not include the logging of the random seed.
This information is essential for reproducing an issue on this test, because it
is randomized. There is a log statement:
[https://github.com/apache/impala/blob/master/tests/query_test/test_scanners_fuzz.py#L171]
{noformat}
LOG.info("Using random seed %d", random_seed){noformat}
However, this is not in the output. It may be that the log level excludes INFO
logging from output.
In tests/conftest.py, we configure the logging at the INFO level:
[https://github.com/apache/impala/blob/master/tests/conftest.py#L71]
{noformat}
logging.basicConfig(level=logging.INFO, format=LOG_FORMAT){noformat}
So, I think we intended to be logging at the INFO level, but it doesn't seem to
be happening.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)