Skip to content

Commit

Permalink
Fixing parallel test for mirror cluster
Browse files Browse the repository at this point in the history
Signed-off-by: Amarnath K <[email protected]>
  • Loading branch information
Amarnath K committed Oct 18, 2024
1 parent 1d95cbb commit 14e9809
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,10 +744,9 @@ def fetch_test_details(var) -> dict:

if test.get("clusters"):
config = test.get("clusters").get(cluster_name).get("config", {})
parallel = test.get("clusters").get(cluster_name).get("parallel")
else:
config = test.get("config", {})
parallel = test.get("parallel")
parallel = test.get("parallel", [])

if not config.get("base_url"):
config["base_url"] = base_url
Expand Down

0 comments on commit 14e9809

Please sign in to comment.