Merge pull request #3800 from wkloucek/fix-search-grpc-addr-env

Bugfix: Rename the search extensions environment variable for the grpc server address
This commit is contained in:
Willy Kloucek
2022-05-16 11:37:35 +02:00
committed by GitHub
2 changed files with 7 additions and 1 deletions
@@ -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
+1 -1
View File
@@ -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:"-"`
}