now alambix is also considered as a cluster

This commit is contained in:
Guillaume Raffy 2023-11-14 18:39:05 +01:00
parent 88fba0fdb0
commit 5bf1cbe664
1 changed files with 1 additions and 1 deletions

View File

@ -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):