git/githistory/log: change Durable to Throttled in ListTask

This commit is contained in:
Taylor Blau 2017-06-19 16:20:35 -04:00
parent edbbe1be6a
commit d69cd196ea

@ -32,9 +32,9 @@ func (l *ListTask) Complete() {
close(l.ch) close(l.ch)
} }
// Durable implements the Task.Durable function and ensures that all log updates // Throttled implements the Task.Throttled function and ensures that all log
// are printed to the sink. // updates are printed to the sink.
func (l *ListTask) Durable() bool { return true } func (l *ListTask) Throttled() bool { return false }
// Updates implements the Task.Updates function and returns a channel of updates // Updates implements the Task.Updates function and returns a channel of updates
// to log to the sink. // to log to the sink.