Skip to content

Commit b1c985a

Browse files
committed
ft-orchestration fix manual probe
1 parent e2ea30f commit b1c985a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/ft-orchestration/src/probe/manual.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ def get_csv(self, output_dir):
2828
class Manual(ProbeInterface):
2929
"""Empty implementation of ProbeInterface to allow manual setup or hardware flow exporter"""
3030

31+
host_statistics = None
32+
3133
def __init__(
3234
self,
3335
executor,
@@ -42,8 +44,7 @@ def __init__(
4244
**kwargs,
4345
):
4446
self._timeouts = (active_timeout, inactive_timeout)
45-
46-
host_statistics = EmptyHostStats()
47+
self.host_statistics = EmptyHostStats(executor, "")
4748

4849
def start(self):
4950
logging.warning("start probe now")

0 commit comments

Comments
 (0)