[
https://issues.apache.org/jira/browse/CASSANDRA-14059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16277775#comment-16277775
]
Jeff Jirsa commented on CASSANDRA-14059:
----------------------------------------
FWIW, this has some fallout - seems like a fair number of callers (especially
of {{debug}} aren't passing in a simple string, but a {{list}}) :
{code}
File "/usr/lib/python2.7/unittest/case.py", line 329, in run
testMethod()
File "/home/cassandra/cassandra-dtest/tools/decorators.py", line 48, in
wrapped
f(obj)
File "/home/cassandra/cassandra-dtest/cqlsh_tests/cqlsh_tests.py", line 1447,
in test_client_warnings
debug(fut.warnings)
File "/home/cassandra/cassandra-dtest/dtest.py", line 187, in debug
LOG.debug(CURRENT_TEST + ' - ' + msg)
"cannot concatenate 'str' and 'list' objects
{code}
{code}
File "/usr/lib/python2.7/unittest/case.py", line 329, in run
testMethod()
File "/home/cassandra/cassandra-dtest/jmx_test.py", line 225, in
test_compactionstats
debug(jmx.read_attribute(compaction_manager, 'CompactionSummary'))
File "/home/cassandra/cassandra-dtest/dtest.py", line 187, in debug
LOG.debug(CURRENT_TEST + ' - ' + msg)
'cannot concatenate \'str\' and \'list\' objects
{code}
Dunno if you want to re-open or open a new JIRA for it.
> Root logging formatter broken in dtests
> ---------------------------------------
>
> Key: CASSANDRA-14059
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14059
> Project: Cassandra
> Issue Type: Bug
> Components: Testing
> Reporter: Joel Knighton
> Assignee: Joel Knighton
> Priority: Minor
>
> Since the ccm dependency in dtest was bumped to {{3.1.0}} in
> {{7cc06a086f89ed76499837558ff263d84337acba}}, when dtests are run with
> --nologcapture, errors of the following form are printed:
> {code}
> Traceback (most recent call last):
> File "/usr/lib64/python2.7/logging/__init__.py", line 861, in emit
> msg = self.format(record)
> File "/usr/lib64/python2.7/logging/__init__.py", line 734, in format
> return fmt.format(record)
> File "/usr/lib64/python2.7/logging/__init__.py", line 469, in format
> s = self._fmt % record.__dict__
> KeyError: 'current_test'
> Logged from file dtest.py, line 485
> {code}
> This is because CCM no longer installs a basic root logger configuration,
> which is probably a more correct behavior than what it did prior to this
> change. Now, dtest installs its own basic root logger configuration which
> writes to 'dtest.log' using the formatter {{'%(asctime)s,%(msecs)d %(name)s
> %(current_test)s %(levelname)s %(message)s'}}. This means that anything
> logging a message must provide the current_test key in its extras map. The
> dtest {{debug}} and {{warning}} functions do this, but logging from
> dependencies doesn't, producing these {{KeyError}} s.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]