From 237e22757ce84ad326b4b23bf01b7e3dfcf7c521 Mon Sep 17 00:00:00 2001 From: Emile Date: Tue, 24 Sep 2019 13:29:00 +0200 Subject: updated age threshold --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() } -- cgit 1.4.1