Skip to content

Commit

Permalink
Fix(titus): Additional checks while setting command (#4636)
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindmd committed May 29, 2020
1 parent 5dbef22 commit 0110556
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ public JobDescriptor getGrpcJobDescriptor() {
containerBuilder.addEntryPoint(entryPoint);
}

if (cmd != null) {
if (cmd != null || !cmd.isEmpty()) {
containerBuilder.addCommand(cmd);
}

Expand Down

0 comments on commit 0110556

Please sign in to comment.