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

fix wrongly named env var
This commit is contained in:
Jörn Friedrich Dreyer authored and GitHub committed 2021-08-13 17:02:22 +02:00
commit 5e5f7ec402
1 file changed
+1 -1
+1 -1
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,
},