diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0036062f27fcf272b4a9e4f5d09c0784405c8687..6fed15feddbc5f781aa4855e694e6395bad944d8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,7 +5,7 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning <http://semver.org/>`_. -v0.3.1 +v0.4.0 ****** Add a `transaction` context handler to propagate transaction IDs in logs for tracing transactions diff --git a/tests/test_transactions.py b/tests/test_transactions.py index 38e048ae43954b85350541ff7b01aef9d17fbe50..825713b9bedbd84b6b0f46f481afcbe5082b4151 100644 --- a/tests/test_transactions.py +++ b/tests/test_transactions.py @@ -105,7 +105,7 @@ class TestTransactionLogging: if "RuntimeError" in log_msg and transaction_id in log_msg and "name" in log_msg: return - assert 0, f"Log messages not found in exception logs: {record_logs}" + assert 0, f"RuntimeError and transaction tag not found in exception logs: {record_logs}" class TestTransactionIdGenerator: