change ocis log level to default and change public link storage mountid mapping

Signed-off-by: David Christofas <dchristofas@owncloud.com>
This commit is contained in:
David Christofas
2020-10-21 10:15:10 +02:00
parent 001fb868e5
commit dd4c320377
4 changed files with 12 additions and 2 deletions
+8
View File
@@ -233,6 +233,14 @@ func GatewayWithConfig(cfg *config.Config) []cli.Flag {
Destination: &cfg.Reva.StoragePublicLink.MountPath,
},
// public-link has no mount id
// TODO after talking to @jfd
&cli.StringFlag{
Name: "storage-public-link-mount-id",
Value: "1284d238-aa92-42ce-bdc4-0b0000009162",
Usage: "mount id",
EnvVars: []string{"STORAGE_PUBLIC_LINK_MOUNT_ID"},
Destination: &cfg.Reva.StoragePublicLink.MountID,
},
}
flags = append(flags, TracingWithConfig(cfg)...)