Only start bandwidth ticker when necessary.
- Only start the token ticker when the timetable entry has more than one entry. - This fixes the "Scheduled bandwidth change" log message when no bwlimit is specified. - Fixes #987
This commit is contained in:
parent
e1a49ca426
commit
6611d92e21
1 changed files with 6 additions and 0 deletions
|
@ -43,6 +43,12 @@ func startTokenBucket() {
|
||||||
|
|
||||||
// startTokenTicker creates a ticker to update the bandwidth limiter every minute.
|
// startTokenTicker creates a ticker to update the bandwidth limiter every minute.
|
||||||
func startTokenTicker() {
|
func startTokenTicker() {
|
||||||
|
// If the timetable has a single entry or was not specified, we don't need
|
||||||
|
// a ticker to update the bandwidth.
|
||||||
|
if len(bwLimit) <= 1 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
ticker := time.NewTicker(time.Minute)
|
ticker := time.NewTicker(time.Minute)
|
||||||
go func() {
|
go func() {
|
||||||
for range ticker.C {
|
for range ticker.C {
|
||||||
|
|
Loading…
Reference in a new issue