fix typo and hide supervised

This commit is contained in:
Willy Kloucek
2022-04-28 15:13:03 +02:00
parent ab254b05d0
commit b515d7f83f
13 changed files with 14 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -9,7 +9,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
HTTP HTTPConfig `yaml:"http"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -12,7 +12,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`
HTTP HTTPConfig `yaml:"http"`
@@ -27,7 +27,7 @@ type Config struct {
Drivers Drivers `yaml:"drivers"`
DataServerURL string `yaml:"data_server_url"`
TempFolder string `yaml:"temp_folder"`
DataProviderInsecure bool `yaml:"data_providcer_insecure" env:"OCIS_INSECURE;STORAGE_METADATA_DATAPROVIDER_INSECURE"`
DataProviderInsecure bool `yaml:"data_provider_insecure" env:"OCIS_INSECURE;STORAGE_METADATA_DATAPROVIDER_INSECURE"`
}
type Tracing struct {
Enabled bool `yaml:"enabled" env:"OCIS_TRACING_ENABLED;STORAGE_METADATA_TRACING_ENABLED" desc:"Activates tracing."`

View File

@@ -12,7 +12,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`

View File

@@ -12,7 +12,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`
HTTP HTTPConfig `yaml:"http"`

View File

@@ -12,7 +12,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`
HTTP HTTPConfig `yaml:"http"`

View File

@@ -8,7 +8,7 @@ type Config struct {
Tracing *Tracing `yaml:"tracing"`
Logging *Logging `yaml:"log"`
Debug Debug `yaml:"debug"`
Supervised bool `yaml:"supervised"`
Supervised bool `yaml:"-"`
GRPC GRPCConfig `yaml:"grpc"`