From 5d0b3a88f34a0ee836dd372291f845053eb83950 Mon Sep 17 00:00:00 2001 From: mariadb-AlanMologorsky Date: Tue, 17 Jun 2025 05:53:02 +0300 Subject: [PATCH] fix(cmapi): MCOL-5899 confusing cluster_mode status when columnstore offline. --- cmapi/cmapi_server/handlers/cluster.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cmapi/cmapi_server/handlers/cluster.py b/cmapi/cmapi_server/handlers/cluster.py index 10a213fb7..f2d8f892b 100644 --- a/cmapi/cmapi_server/handlers/cluster.py +++ b/cmapi/cmapi_server/handlers/cluster.py @@ -83,6 +83,7 @@ class ClusterHandler(): r_json = r.json() if len(r_json.get('services', 0)) == 0: r_json['dbrm_mode'] = 'offline' + r_json['cluster_mode'] = 'offline' response[f'{str(node)}'] = r_json num_nodes += 1