We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b142f commit b0ce775Copy full SHA for b0ce775
1 file changed
bench_runner/config.py
@@ -26,4 +26,7 @@ def get_bench_runner_config(
26
def get_config_for_current_runner() -> dict[str, Any]:
27
config = get_bench_runner_config()
28
runner = runners.get_runner_for_hostname()
29
- return config.get("runners", {}).get(runner.nickname, {})
+ all_runners = config.get("runners", [])
30
+ if len(all_runners) >= 1:
31
+ return all_runners[0].get(runner.nickname, {})
32
+ return {}
0 commit comments