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

Commit

Permalink
fix ordering of params in isolated task queue producer
Browse files Browse the repository at this point in the history
  • Loading branch information
apanicker-nflx committed Nov 17, 2020
1 parent 6bce391 commit 7a19487
Showing 1 changed file with 1 addition and 1 deletion.
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 7a19487

Please sign in to comment.