Merge pull request #2397 from owncloud/fix-env-var-1

fix wrongly named env var
This commit is contained in:
Jörn Friedrich Dreyer
2021-08-13 17:02:22 +02:00
committed by GitHub

View File

@@ -15,7 +15,7 @@ func UsersWithConfig(cfg *config.Config) []cli.Flag {
Name: "debug-addr",
Value: flags.OverrideDefaultString(cfg.Reva.Users.DebugAddr, "0.0.0.0:9145"),
Usage: "Address to bind debug server",
EnvVars: []string{"STORAGE_SHARING_DEBUG_ADDR"},
EnvVars: []string{"STORAGE_USERPROVIDER_DEBUG_ADDR"},
Destination: &cfg.Reva.Users.DebugAddr,
},