Remove 'ocisConfig' struct tag leftovers

Support the 'ocisConfig' tag was removed long time ago with commit
1232f26fe4
This commit is contained in:
Ralf Haferkamp
2025-01-16 17:51:02 +01:00
parent 61b48a2580
commit 553ae7dfa3
7 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -76,8 +76,8 @@ type CORS struct {
// GRPCConfig defines the available grpc configuration.
type GRPCConfig struct {
Addr string `ocisConfig:"addr" env:"OCM_GRPC_ADDR" desc:"The bind address of the GRPC service." introductionVersion:"5.0"`
Namespace string `ocisConfig:"-" yaml:"-"`
Addr string `yaml:"addr" env:"OCM_GRPC_ADDR" desc:"The bind address of the GRPC service." introductionVersion:"5.0"`
Namespace string `yaml:"-"`
TLS *shared.GRPCServiceTLS `yaml:"tls"`
Protocol string `yaml:"protocol" env:"OC_GRPC_PROTOCOL;OCM_GRPC_PROTOCOL" desc:"The transport protocol of the GRPC service." introductionVersion:"5.0"`
}