Files
opencloud/proxy/pkg/middleware
David Christofas 7ad38d7757 fix token cache TTL
The TTL was supplied to the middleware as a duration and then in that middleware multiplied by `time.Second` again. Durations should not be multiplied because they result in unintended values.
```go
	time.Second * 1 = 1s
	time.Second * time.Second = 277777h46m40s
```
2021-02-22 18:40:15 +01:00
..
2020-12-22 16:16:57 +01:00
2021-02-22 18:40:15 +01:00
2020-11-17 11:32:12 +01:00
2020-11-21 07:58:19 +01:00