diff --git a/src/cli/commands.py b/src/cli/commands.py index c9e98b6..1019e33 100644 --- a/src/cli/commands.py +++ b/src/cli/commands.py @@ -115,7 +115,7 @@ def create_job_file_for_project( return None t1_count = tier1_count if tier1_count is not None else random.randint(10, 12) - t2_count = (tier1_count * 2) + random.randint(1, 12) + t2_count = (t1_count * 2) + random.randint(1, 12) if random_deployment_targets is not None: num_targets = min(random_deployment_targets, len(available_domains)) else: