log error when a transaction id is not there

This commit is contained in:
holger krekel
2024-07-25 13:25:38 +02:00
parent da3eb89b67
commit 4f4fd6a90c

View File

@@ -78,9 +78,8 @@ class MetadataDictProxy(DictProxy):
self.transactions[transaction_id]["res"] = "F\n"
except KeyError:
logging.error(
f"clearing transaction failed: {transaction_id} {self.transactions}"
f"could not mark tx as failed: {transaction_id} {self.transactions}"
)
raise
def main():