reduce poll ip cutoff to 180 days

This commit is contained in:
Azareal 2020-02-19 14:58:45 +10:00
parent 71f7f20c2e
commit da3a41b51a
1 changed files with 3 additions and 1 deletions

View File

@ -138,6 +138,8 @@ type devConfig struct {
NoFsnotify bool // Super Experimental! NoFsnotify bool // Super Experimental!
FullReqLog bool FullReqLog bool
ExtraTmpls string // Experimental flag for adding compiled templates, we'll likely replace this with a better mechanism ExtraTmpls string // Experimental flag for adding compiled templates, we'll likely replace this with a better mechanism
//QuicPort int // Experimental!
} }
// configHolder is purely for having a big struct to unmarshal data into // configHolder is purely for having a big struct to unmarshal data into
@ -248,7 +250,7 @@ func ProcessConfig() (err error) {
Config.LastIPCutoff = 12 Config.LastIPCutoff = 12
} }
if Config.PollIPCutoff == 0 { if Config.PollIPCutoff == 0 {
Config.PollIPCutoff = 365 // Default cutoff Config.PollIPCutoff = 180 // Default cutoff
} }
if Config.NoEmbed { if Config.NoEmbed {
DefaultParseSettings.NoEmbed = true DefaultParseSettings.NoEmbed = true