diff options
-rw-r--r-- | deploy/dha_adapters/zte_adapter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/dha_adapters/zte_adapter.py b/deploy/dha_adapters/zte_adapter.py index 1e610ca41..a40a02685 100644 --- a/deploy/dha_adapters/zte_adapter.py +++ b/deploy/dha_adapters/zte_adapter.py @@ -20,8 +20,8 @@ from common import ( class ZteAdapter(IpmiAdapter): - def __init__(self, yaml_path): - super(ZteAdapter, self).__init__(yaml_path) + def __init__(self, yaml_path, attempts=100): + super(ZteAdapter, self).__init__(yaml_path, attempts) def node_reset(self, node_id): WAIT_LOOP = 600 |