about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-09-24 13:29:00 +0200
committerEmile <hanemile@protonmail.com>2019-09-24 13:29:00 +0200
commit237e22757ce84ad326b4b23bf01b7e3dfcf7c521 (patch)
tree71b6f078df32f6d503f31d0631a145db35adcbaa
parentdd090c0cc28170cc63fffe6af102209a9854e1b7 (diff)
updated age threshold
-rw-r--r--server.go2
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()
 }