1 parent 00732ef commit b39d8d1Copy full SHA for b39d8d1
1 file changed
asap-tools/experiments/experiment_utils/services/fake_exporters.py
@@ -53,7 +53,12 @@ def execute_fake_exporter_commands_in_parallel(
53
node_commands: List[Tuple[int, str]],
54
**kwargs,
55
) -> None:
56
- """Run node-specific exporter commands concurrently."""
+ """Run node-specific exporter commands concurrently.
57
+
58
+ The provider method applies one command to every node in ``node_idxs``.
59
+ Fake exporters need different commands per node because their seeds are
60
+ node-specific, so invoke it once per node while preserving concurrency.
61
+ """
62
if not node_commands:
63
return
64
0 commit comments