This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 2966856049f KAFKA-18240 Remove nonexistent `LOG4J_CONFIG` from
transactional_message_copier.py (#18184)
2966856049f is described below
commit 2966856049f095ee5dafee66ae8f2e07c43f26bb
Author: Nick Guo <[email protected]>
AuthorDate: Sun Dec 15 05:54:14 2024 +0800
KAFKA-18240 Remove nonexistent `LOG4J_CONFIG` from
transactional_message_copier.py (#18184)
Reviewers: Ken Huang <[email protected]>, TengYao Chi
<[email protected]>, TaiJuWu <[email protected]>, Yung
<[email protected]>, Chia-Ping Tsai <[email protected]>
---
tests/kafkatest/services/transactional_message_copier.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kafkatest/services/transactional_message_copier.py
b/tests/kafkatest/services/transactional_message_copier.py
index d1f918cd8e1..9a84f2b4c42 100644
--- a/tests/kafkatest/services/transactional_message_copier.py
+++ b/tests/kafkatest/services/transactional_message_copier.py
@@ -79,7 +79,7 @@ class TransactionalMessageCopier(KafkaPathResolverMixin,
BackgroundThreadService
# Create and upload log properties
log_config = self.render(get_log4j_config_for_tools(node),
log_file=TransactionalMessageCopier.LOG_FILE)
-
node.account.create_file(get_log4j_config_for_tools(node).LOG4J_CONFIG,
log_config)
+ node.account.create_file(get_log4j_config_for_tools(node), log_config)
# Configure security
self.security_config =
self.kafka.security_config.client_config(node=node)
self.security_config.setup_node(node)