diff options
author | Gitea <gitea@fake.local> | 2023-12-27 15:45:39 +0000 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2023-12-27 15:45:39 +0000 |
commit | a26424b2b203fe1804f983aa1aefc7d06648d014 (patch) | |
tree | ec994a6f47e1675b74fc2803c2b0709b2c4834d1 /main.go | |
parent | 1e35a349c90ce5f5dce0ef19475382340bcddd88 (diff) |
-better log entries; lower update frequency
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,8 +35,8 @@ var ( fl_token = flag.String("token", os.Getenv("MANTIS_API_TOKEN"), "API-Token") fl_port = flag.String("port", ":8080", "[ip]:port to serve") fl_num = flag.Int("num", 250, "number of issues to retrieve at once") - fl_min = flag.String("min", "0.9.3", "minimum version we care for") - fl_freq = flag.Duration("fr", time.Minute, "update frequency") + fl_min = flag.String("min", "0.9.1", "minimum version we care for") + fl_freq = flag.Duration("fr", 30*time.Minute, "update frequency") fl_proj = flag.Int("project", 23, "project id to use") ) |