cmd/tailscale/cli: [up] fix CreateKey missing argument (#8124)

Signed-off-by: Shayne Sweeney <shayne@tailscale.com>
This commit is contained in:
shayne
2023-05-12 02:03:17 -04:00
committed by GitHub
parent 9b6e48658f
commit 678bb92bb8
+2 -1
View File
@@ -1198,7 +1198,8 @@ func resolveAuthKey(ctx context.Context, v, tags string) (string, error) {
}, },
} }
authkey, _, err := tsClient.CreateKey(ctx, caps) const defaultExpiry = 0
authkey, _, err := tsClient.CreateKey(ctx, caps, defaultExpiry)
if err != nil { if err != nil {
return "", err return "", err
} }