Skip to content

Commit

Permalink
ensure temporary compatiblity, so this is not a breaking PR
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Nov 24, 2021
1 parent 0e13b06 commit a601a2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions storage/pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -1082,19 +1082,19 @@ func structMappings(cfg *Config) []shared.EnvBinding {
// app provider

{
EnvVars: []string{"APP_PROVIDER_DEBUG_ADDR"},
EnvVars: []string{"APP_PROVIDER_DEBUG_ADDR", "APP_PROVIDER_BASIC_DEBUG_ADDR"}, // TODO: remove env containing _BASIC_
Destination: &cfg.Reva.AppProvider.DebugAddr,
},
{
EnvVars: []string{"APP_PROVIDER_GRPC_NETWORK"},
EnvVars: []string{"APP_PROVIDER_GRPC_NETWORK", "APP_PROVIDER_BASIC_GRPC_NETWORK"}, // TODO: remove env containing _BASIC_
Destination: &cfg.Reva.AppProvider.GRPCNetwork,
},
{
EnvVars: []string{"APP_PROVIDER_GRPC_ADDR"},
EnvVars: []string{"APP_PROVIDER_GRPC_ADDR", "APP_PROVIDER_BASIC_GRPC_ADDR"}, // TODO: remove env containing _BASIC_
Destination: &cfg.Reva.AppProvider.GRPCAddr,
},
{
EnvVars: []string{"APP_PROVIDER_EXTERNAL_ADDR"},
EnvVars: []string{"APP_PROVIDER_EXTERNAL_ADDR", "APP_PROVIDER_BASIC_EXTERNAL_ADDR"}, // TODO: remove env containing _BASIC_
Destination: &cfg.Reva.AppProvider.ExternalAddr,
},
{
Expand Down

0 comments on commit a601a2f

Please sign in to comment.