frappy-cli: support older frappy client

This commit is contained in:
2025-04-29 11:35:37 +02:00
parent 38009190e4
commit 7025ec3a22

View File

@ -207,7 +207,10 @@ class FrappyManager(ServiceManager):
nodes = self.get_nodes(ins, service)
from frappy.client.interactive import init, interact
init(*nodes)
interact()
try:
interact(appname=ins)
except TypeError: # older frappy client
interact()
@staticmethod
def get_cfg_details(namespace, cfgfile):