diff options
-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() } |