Merge pull request #323 from butonic/allow-datagateway-transfers-to-take-24h

Increase transfer token life time to 24h
This commit is contained in:
Benedikt Kulmann
2020-07-01 16:50:33 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
@@ -0,0 +1,5 @@
Enhancement: Allow datagateway transfers to take 24h
- Increase transfer token life time to 24h (PR #323)
https://github.com/owncloud/ocis-reva/pull/323
+1 -1
View File
@@ -90,7 +90,7 @@ func GatewayWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.IntFlag{
Name: "transfer-expires",
Value: 10,
Value: 24 * 60 * 60,
Usage: "Transfer secret for datagateway",
EnvVars: []string{"REVA_TRANSFER_EXPIRES"},
Destination: &cfg.Reva.TransferExpires,