changed interval to seconds

This commit is contained in:
2022-07-05 11:12:28 +02:00
parent e77e8a3966
commit 85a0f0a26c
2 changed files with 13 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
bandwidth: bandwidth:
min: 2 min: 2
max: 45 max: 45
step: 2 step: 1
interval: 5 interval: 30
host: "itsh.dev" host: "itsh.dev"
ppp: 5 ppp: 5
conformation_ppp: 30 conformation_ppp: 30

21
main.go
View File

@@ -23,15 +23,15 @@ type Conf struct {
Min int `yaml:"min"` Min int `yaml:"min"`
Step int `yaml:"step"` Step int `yaml:"step"`
} `yaml:"bandwidth"` } `yaml:"bandwidth"`
Interval float64 `yaml:"interval"` Interval int `yaml:"interval"`
Host string `yaml:"host"` Host string `yaml:"host"`
PPP int `yaml:"ppp"` PPP int `yaml:"ppp"`
ConformationPPP int `yaml:"conformation_ppp"` ConformationPPP int `yaml:"conformation_ppp"`
LogLevel string `yaml:"log_level"` LogLevel string `yaml:"log_level"`
UploadInterface string `yaml:"upload_interface"` UploadInterface string `yaml:"upload_interface"`
CakeOptions string `yaml:"cake_options"` CakeOptions string `yaml:"cake_options"`
ThrottlePingThreshold int64 `yaml:"throttle_ping_threshold"` ThrottlePingThreshold int64 `yaml:"throttle_ping_threshold"`
TryRestoringAfter int `yaml:"try_restoring_after"` TryRestoringAfter int `yaml:"try_restoring_after"`
} }
var ( var (
@@ -171,7 +171,8 @@ func (m UploadManager) pingWorker() error {
} }
} }
} }
time.Sleep(time.Duration(conf.Interval) * time.Minute) log.Debugf("sleep for %s", time.Duration(conf.Interval)*time.Second)
time.Sleep(time.Duration(conf.Interval) * time.Second)
} }
} }