From 5bf1cbe664c87b1ba2f24dd1ba3adf37718d9187 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Tue, 14 Nov 2023 18:39:05 +0100 Subject: [PATCH] now alambix is also considered as a cluster --- cocluto/cluster_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocluto/cluster_stats.py b/cocluto/cluster_stats.py index 20cf52e..686e330 100644 --- a/cocluto/cluster_stats.py +++ b/cocluto/cluster_stats.py @@ -30,7 +30,7 @@ import abc def is_cluster_node_name(name): - return re.match('^simpatix[0-9]+$', name) is not None or re.match('^physix[0-9]+$', name) is not None + return re.match('^simpatix[0-9]+$', name) is not None or re.match('^physix[0-9]+$', name) is not None or re.match('^alambix[0-9]+$', name) is not None def is_test_machine(name):