Skip to content

Commit

Permalink
Update dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler…
Browse files Browse the repository at this point in the history
…/api/service/impl/WorkerGroupServiceImpl.java


done

Co-authored-by: caishunfeng <[email protected]>
  • Loading branch information
DarkAssassinator and caishunfeng authored Oct 25, 2022
1 parent 62affd8 commit 41c0c27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public String getTaskWorkerGroup(TaskInstance taskInstance) {

String workerGroup = taskInstance.getWorkerGroup();

if (!Strings.isNullOrEmpty(workerGroup)) {
if (StringUtils.isNotEmpty(workerGroup)) {
return workerGroup;
}
int processInstanceId = taskInstance.getProcessInstanceId();
Expand Down

0 comments on commit 41c0c27

Please sign in to comment.