Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated platform api endpoint to api.cloud.seqera.io #61

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/src/main/java/io/seqera/wave/cli/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public class App implements Runnable {
private static final org.slf4j.Logger log = LoggerFactory.getLogger(App.class);

private static final boolean isWindows = System.getProperty("os.name").toLowerCase().contains("windows");
private static final String DEFAULT_TOWER_ENDPOINT = "https://api.tower.nf";
private static final String DEFAULT_TOWER_ENDPOINT = "https://api.cloud.seqera.io";

private static final List<String> VALID_PLATFORMS = List.of("amd64", "x86_64", "linux/amd64", "linux/x86_64", "arm64", "linux/arm64");

Expand All @@ -103,7 +103,7 @@ public class App implements Runnable {
@Option(names = {"--tower-token"}, paramLabel = "''", description = "Tower service access token.")
private String towerToken;

@Option(names = {"--tower-endpoint"}, paramLabel = "''", description = "Tower service endpoint e.g. https://api.tower.nf.")
@Option(names = {"--tower-endpoint"}, paramLabel = "''", description = "Tower service endpoint e.g. https://api.cloud.seqera.io.")
private String towerEndpoint;

@Option(names = {"--tower-workspace-id"}, paramLabel = "''", description = "Tower service workspace ID e.g. 1234567890.")
Expand Down