diff --git a/app/namespace.go b/app/namespace.go index b1cf04b0..8c57c0c5 100644 --- a/app/namespace.go +++ b/app/namespace.go @@ -2023,11 +2023,8 @@ func NewNamespaceCommand(getNamespaceClientFn GetNamespaceClientFn) (CommandOut, exportS3Commands.Subcommands = append(exportS3Commands.Subcommands, exportGeneralCommands...) exportCommand.Subcommands = append(exportCommand.Subcommands, exportS3Commands) - // TODO: remove GCP sink feature flag check when out of pre-release - if IsFeatureEnabled(GCPSinkFeatureFlag) { - exportGCSCommands.Subcommands = append(exportGCSCommands.Subcommands, exportGeneralCommands...) - exportCommand.Subcommands = append(exportCommand.Subcommands, exportGCSCommands) - } + exportGCSCommands.Subcommands = append(exportGCSCommands.Subcommands, exportGeneralCommands...) + exportCommand.Subcommands = append(exportCommand.Subcommands, exportGCSCommands) subCommands = append(subCommands, exportCommand)