Skip to content

Commit e073a09

Browse files
author
maelorn
committed
extra space
1 parent 0e7c655 commit e073a09

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

mrq/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def normalize_command(command, worker_group):
3535
continue
3636
simplified_command += " %s" % part
3737
skip_next = False
38-
simplified_command = "MRQ_WORKER_GROUP=%s %s" % (worker_group, simplified_command)
38+
simplified_command = "MRQ_WORKER_GROUP=%s%s" % (worker_group, simplified_command)
3939
return simplified_command, int(worker_count)
4040
return "MRQ_WORKER_GROUP=%s %s" % (worker_group, command), 1
4141

tests/test_agent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def test_orchestration_scenarios(worker):
5454
}
5555
]) == {
5656
"worker1": [
57-
"MRQ_WORKER_GROUP=xx mrq-worker --processes 2 a",
57+
"MRQ_WORKER_GROUP=xx mrq-worker a",
58+
"MRQ_WORKER_GROUP=xx mrq-worker a",
5859
"MRQ_WORKER_GROUP=xx mrq-worker b"
5960
]
6061
}

0 commit comments

Comments
 (0)