From a54e04e18fdc906620351925f421d7ba68b399f3 Mon Sep 17 00:00:00 2001 From: Zhengbo Zhou <99763465+jumbogo@users.noreply.github.com> Date: Mon, 7 Apr 2025 09:50:19 -0700 Subject: [PATCH] remove gcpsink ff check --- app/namespace.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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)