Skip to content

Commit

Permalink
Compilation fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Dec 5, 2017
1 parent 61a9d65 commit 489dc9b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -504,7 +504,7 @@ public void createWorkerThreads(Task coordinatorTask, OperationResult opResult)
subtask.resetActionsExecutedInformation(null);
}
subtask.setCategory(coordinatorTask.getCategory());
subtask.setResult(new OperationResult(taskOperationPrefix + ".executeWorker", OperationResultStatus.IN_PROGRESS, null));
subtask.setResult(new OperationResult(taskOperationPrefix + ".executeWorker", OperationResultStatus.IN_PROGRESS, (String) null));
subtask.setName("Worker thread " + (i+1) + " of " + threadsCount);
subtask.startLightweightHandler();
LOGGER.trace("Worker subtask {} created", subtask);
Expand Down

0 comments on commit 489dc9b

Please sign in to comment.