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,6 +207,9 @@ class FrappyManager(ServiceManager):
nodes = self.get_nodes(ins, service)
from frappy.client.interactive import init, interact
init(*nodes)
try:
interact(appname=ins)
except TypeError: # older frappy client
interact()
@staticmethod