diff --git a/throttle_timer.go b/throttle_timer.go index 0b40a60c..5442d0cd 100644 --- a/throttle_timer.go +++ b/throttle_timer.go @@ -46,6 +46,10 @@ func (t *ThrottleTimer) Set() { } } +func (t *ThrottleTimer) Unset() { + t.timer.Stop() +} + // For ease of .Stop()'ing services before .Start()'ing them, // we ignore .Stop()'s on nil ThrottleTimers func (t *ThrottleTimer) Stop() bool {