diff options
author | Emile <hanemile@protonmail.com> | 2019-09-24 13:29:00 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-09-24 13:29:00 +0200 |
commit | 237e22757ce84ad326b4b23bf01b7e3dfcf7c521 (patch) | |
tree | 71b6f078df32f6d503f31d0631a145db35adcbaa | |
parent | dd090c0cc28170cc63fffe6af102209a9854e1b7 (diff) |
updated age threshold
-rw-r--r-- | server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server.go b/server.go index 76085d1..928ca83 100644 --- a/server.go +++ b/server.go @@ -40,6 +40,6 @@ func main() { func initFlags() { flag.IntVar(&port, "p", 8080, "the port the server should listen on") - flag.IntVar(&categoryAgeThreshold, "a", 10, "max category age in seconds") + flag.IntVar(&categoryAgeThreshold, "a", 3600, "max category age in seconds") flag.Parse() } |