Skip to content

Commit

Permalink
removed coalesce
Browse files Browse the repository at this point in the history
  • Loading branch information
munishchouhan committed Aug 21, 2024
1 parent bd591cf commit d6f9739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private WorkflowLaunchRequest updateLaunchRequest(WorkflowLaunchRequest base) th
.labelIds(base.getLabelIds())
.headJobCpus(base.getHeadJobCpus())
.headJobMemoryMb(base.getHeadJobMemoryMb()
.launchContainer(coalesce(launchContainer, null)));
.launchContainer(launchContainer));
}

protected Response runTowerPipeline(Long wspId) throws ApiException, IOException {
Expand Down

0 comments on commit d6f9739

Please sign in to comment.