Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1973 from Netflix/isolated_task_queue_producer_fix
Browse files Browse the repository at this point in the history
fix ordering of params in isolated task queue producer
  • Loading branch information
apanicker-nflx committed Nov 17, 2020
2 parents f65ecd5 + 7a19487 commit 90ab0ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void addTaskQueues() {
for (TaskDef isolatedTaskDef : isolationTaskDefs) {
for (String taskType : taskTypes) {
String taskQueue = QueueUtils.getQueueName(taskType, null,
isolatedTaskDef.getExecutionNameSpace(), isolatedTaskDef.getIsolationGroupId());
isolatedTaskDef.getIsolationGroupId(), isolatedTaskDef.getExecutionNameSpace());
logger.debug("Adding taskQueue:'{}' to system task worker coordinator", taskQueue);
SystemTaskWorkerCoordinator.queue.add(taskQueue);
}
Expand Down

0 comments on commit 90ab0ba

Please sign in to comment.