import updater effeciency

pull/432/head
Darien Raymond 8 years ago
parent d93ff628bc
commit f87b0fcde7
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

@ -147,9 +147,10 @@ func (v *Updater) Run() {
if v.shouldTerminate() { if v.shouldTerminate() {
return return
} }
interval := v.Interval()
for v.shouldContinue() { for v.shouldContinue() {
v.updateFunc() v.updateFunc()
time.Sleep(v.Interval()) time.Sleep(interval)
} }
} }
} }

Loading…
Cancel
Save