remove unused OCS_STORAGE_USERS_DRIVER configuration option

This commit is contained in:
Willy Kloucek
2022-06-13 11:29:20 +02:00
parent dbeaeb735e
commit a319b17459
3 changed files with 7 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
Bugfix: Remove unused OCS storage configuration
We've removed the unused OCS configuration option `OCS_STORAGE_USERS_DRIVER`.
https://github.com/owncloud/ocis/pull/3955

View File

@@ -23,9 +23,8 @@ type Config struct {
IdentityManagement IdentityManagement `yaml:"identity_management"`
AccountBackend string `yaml:"account_backend" env:"OCS_ACCOUNT_BACKEND_TYPE"`
StorageUsersDriver string `yaml:"storage_users_driver" env:"STORAGE_USERS_DRIVER;OCS_STORAGE_USERS_DRIVER"`
MachineAuthAPIKey string `yaml:"machine_auth_api_key" env:"OCIS_MACHINE_AUTH_API_KEY;OCS_MACHINE_AUTH_API_KEY"`
AccountBackend string `yaml:"account_backend" env:"OCS_ACCOUNT_BACKEND_TYPE"`
MachineAuthAPIKey string `yaml:"machine_auth_api_key" env:"OCIS_MACHINE_AUTH_API_KEY;OCS_MACHINE_AUTH_API_KEY"`
Context context.Context `yaml:"-"`
}

View File

@@ -39,7 +39,6 @@ func DefaultConfig() *config.Config {
Reva: &config.Reva{
Address: "127.0.0.1:9142",
},
StorageUsersDriver: "ocis",
IdentityManagement: config.IdentityManagement{
Address: "https://localhost:9200",
},