Skip to content

Commit 549ce8e

Browse files
committed
chore(load-balancer): remove redundant deprecation comment
1 parent b54f2c0 commit 549ce8e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

internal/cmd/server/service-account/attach/attach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func NewCmd(params *types.CmdParams) *cobra.Command {
3838
Use: "attach",
3939
Short: "Attach a service account to a server",
4040
Long: "Attach a service account to a server",
41-
Args: args.SingleOptionalArg(serviceAccMailArg, nil), // Deprecated: positional argument is not used anymore, use the flag instead, will be removed after 2026-12
41+
Args: args.SingleOptionalArg(serviceAccMailArg, nil),
4242
Example: examples.Build(
4343
examples.NewExample(
4444
`Attach a service account with mail "xxx@sa.stackit.cloud" to a server with ID "yyy"`,

internal/cmd/server/service-account/detach/detach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func NewCmd(params *types.CmdParams) *cobra.Command {
3838
Use: "detach",
3939
Short: "Detach a service account from a server",
4040
Long: "Detach a service account from a server",
41-
Args: args.SingleOptionalArg(serviceAccMailArg, nil), // Deprecated: positional argument is not used anymore, use the flag instead, will be removed after 2026-12
41+
Args: args.SingleOptionalArg(serviceAccMailArg, nil),
4242
Example: examples.Build(
4343
examples.NewExample(
4444
`Detach a service account with mail "xxx@sa.stackit.cloud" from a server "yyy"`,

0 commit comments

Comments
 (0)