From d69cd196eac083ca110b8d2d46d4f555ea789f0c Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Mon, 19 Jun 2017 16:20:35 -0400 Subject: [PATCH] git/githistory/log: change Durable to Throttled in ListTask --- git/githistory/log/list_task.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git/githistory/log/list_task.go b/git/githistory/log/list_task.go index dc8f4f49..ce5ccf0c 100644 --- a/git/githistory/log/list_task.go +++ b/git/githistory/log/list_task.go @@ -32,9 +32,9 @@ func (l *ListTask) Complete() { close(l.ch) } -// Durable implements the Task.Durable function and ensures that all log updates -// are printed to the sink. -func (l *ListTask) Durable() bool { return true } +// Throttled implements the Task.Throttled function and ensures that all log +// updates are printed to the sink. +func (l *ListTask) Throttled() bool { return false } // Updates implements the Task.Updates function and returns a channel of updates // to log to the sink.