We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ea30f commit b1c985aCopy full SHA for b1c985a
tools/ft-orchestration/src/probe/manual.py
@@ -28,6 +28,8 @@ def get_csv(self, output_dir):
28
class Manual(ProbeInterface):
29
"""Empty implementation of ProbeInterface to allow manual setup or hardware flow exporter"""
30
31
+ host_statistics = None
32
+
33
def __init__(
34
self,
35
executor,
@@ -42,8 +44,7 @@ def __init__(
42
44
**kwargs,
43
45
):
46
self._timeouts = (active_timeout, inactive_timeout)
-
- host_statistics = EmptyHostStats()
47
+ self.host_statistics = EmptyHostStats(executor, "")
48
49
def start(self):
50
logging.warning("start probe now")
0 commit comments