This is an automated email from the ASF dual-hosted git repository.

edimitrova pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git


The following commit(s) were added to refs/heads/trunk by this push:
     new e1846961 TypeError in logging fixed
e1846961 is described below

commit e1846961b652979517d5a89e7f1731cacfb7a5c6
Author: Ekaterina Dimitrova <ekaterina.dimitr...@datastax.com>
AuthorDate: Tue Feb 27 10:14:36 2024 -0500

    TypeError in logging fixed
    
    patch by Ekaterina Dimitrova; reviewed by Brandon Williams for 
CASSANDRA-19446
---
 conftest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conftest.py b/conftest.py
index f324b3d5..be4f02c1 100644
--- a/conftest.py
+++ b/conftest.py
@@ -370,7 +370,7 @@ def fixture_dtest_setup(request,
             if failed or not dtest_config.delete_logs:
                 copy_logs(request, dtest_setup.cluster)
         except Exception as e:
-            logger.error("Error saving log:", str(e))
+            logger.error("Error saving log: %s", str(e))
         finally:
             dtest_setup.cleanup_cluster(request, failed)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to