1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00
This commit is contained in:
Alexander Presnyakov
2025-07-09 01:47:01 +00:00
committed by Serguey Zefirov
parent af6c5bce28
commit f265d6ae18
3 changed files with 8 additions and 3 deletions

View File

@ -135,6 +135,10 @@ def start_transaction(
# this copy will be updated if an optional node can't be reached
real_active_nodes = set(active_nodes)
logging.trace(f'Active nodes on start transaction {active_nodes}')
if not len(active_nodes):
logging.warning('No active nodes found, transaction start will not have any effect')
for node in active_nodes:
url = f'https://{node}:8640/cmapi/{version}/node/begin'
node_success = False