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

feat: add support for public ports #1905

Merged
merged 14 commits into from
Dec 8, 2023
5 changes: 3 additions & 2 deletions cli/cli/commands/cloud/load/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ func run(ctx context.Context, _ *flags.ParsedFlags, args *args.ParsedArgs) error
}

getConfigArgs := &api.GetCloudInstanceConfigArgs{
ApiKey: *apiKey,
InstanceId: instanceID,
ApiKey: apiKey,
InstanceId: &instanceID,
InstanceShortId: nil,
}
result, err := client.GetCloudInstanceConfig(ctx, getConfigArgs)
if err != nil {
Expand Down
Loading
Loading