From 6b165f806fd345cb193c638a79e6c189609df407 Mon Sep 17 00:00:00 2001 From: Brody Osterbuhr <34581663+BOsterbuhr@users.noreply.github.com> Date: Tue, 26 Mar 2024 23:38:40 -0500 Subject: [PATCH] [2.9] Remove PACHD_ADDRESS deprecation warning (#9703) (#9865) PACHD_ADDRESS is no longer deprecated as it is being used in determined notebooks. --- src/internal/client/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/internal/client/client.go b/src/internal/client/client.go index d581ca31b32..25f63d8edc9 100644 --- a/src/internal/client/client.go +++ b/src/internal/client/client.go @@ -405,7 +405,6 @@ func getUserMachineAddrAndOpts(context *config.Context) (*grpcutil.PachdAddress, // 1) PACHD_ADDRESS environment variable (shell-local) overrides global config if envAddrStr, ok := os.LookupEnv("PACHD_ADDRESS"); ok { - fmt.Fprintln(os.Stderr, "WARNING: 'PACHD_ADDRESS' is deprecated and will be removed in a future release, use Pachyderm contexts instead.") envAddr, err := grpcutil.ParsePachdAddress(envAddrStr) if err != nil {