Skip to content

Commit

Permalink
fix: user/instance id values were flipped (#1698)
Browse files Browse the repository at this point in the history
Earlier the value of user and instance id were flipped in `kurtosis
context add`
  • Loading branch information
h4ck3rk3y committed Nov 6, 2023
1 parent d36164d commit 901069c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli/commands/kurtosis_context/add/add.go
Expand Up @@ -76,8 +76,8 @@ func AddContext(newContextToAdd *generated.KurtosisContext, envVars *string, clo
newContextToAdd.GetRemoteContextV0().GetTunnelPort(),
newContextToAdd.GetRemoteContextV0().GetTlsConfig(),
envVars,
cloudInstanceIdCopy,
cloudUserIdCopy,
cloudInstanceIdCopy,
)
} else {
enrichedContextData = newContextToAdd
Expand Down

0 comments on commit 901069c

Please sign in to comment.