Skip to content

Commit

Permalink
fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
munishchouhan committed Aug 21, 2024
1 parent d5edf73 commit 32acc87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ private WorkflowLaunchRequest updateLaunchRequest(WorkflowLaunchRequest base) th
.optimizationTargets(coalesce(adv().disableOptimization, false) ? null : base.getOptimizationTargets())
.labelIds(base.getLabelIds())
.headJobCpus(base.getHeadJobCpus())
.headJobMemoryMb(base.getHeadJobMemoryMb()
.launchContainer(launchContainer));
.headJobMemoryMb(base.getHeadJobMemoryMb())
.launchContainer(launchContainer);
}

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

0 comments on commit 32acc87

Please sign in to comment.