From c798af733861097803a84eec6779b3e3859ec7be Mon Sep 17 00:00:00 2001 From: Jaime Date: Fri, 11 Aug 2023 17:34:53 +0200 Subject: [PATCH] fix: missing pipeline name when none is found --- src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java b/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java index d93b7375..95ad5e4d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java @@ -145,7 +145,7 @@ protected Response runTowerPipeline(Long wspId) throws ApiException, IOException } if (pipe == null) { - throw new InvalidResponseException(String.format("Pipeline '%s' not found", pipe)); + throw new InvalidResponseException(String.format("Pipeline '%s' not found", pipeline)); } Long sourceWorkspaceId = sourceWorkspaceId(wspId, pipe);