diff --git a/changelog/unreleased/fix-search-grpc-addr-env.md b/changelog/unreleased/fix-search-grpc-addr-env.md new file mode 100644 index 000000000..72b9b84c3 --- /dev/null +++ b/changelog/unreleased/fix-search-grpc-addr-env.md @@ -0,0 +1,6 @@ +Bugfix: Rename search env variable for the grpc server address + +We've fixed the gprc server address configuration environment variable by renaming it from +`ACCOUNTS_GRPC_ADDR` to `SEARCH_GRPC_ADDR` + +https://github.com/owncloud/ocis/pull/3800 diff --git a/extensions/search/pkg/config/grpc.go b/extensions/search/pkg/config/grpc.go index 148fda925..89593b529 100644 --- a/extensions/search/pkg/config/grpc.go +++ b/extensions/search/pkg/config/grpc.go @@ -2,6 +2,6 @@ package config // GRPC defines the available grpc configuration. type GRPC struct { - Addr string `ocisConfig:"addr" env:"ACCOUNTS_GRPC_ADDR" desc:"The address of the grpc service."` + Addr string `ocisConfig:"addr" env:"SEARCH_GRPC_ADDR" desc:"The address of the grpc service."` Namespace string `ocisConfig:"-" yaml:"-"` }