forked from TrueCloudLab/frostfs-node
9 lines
122 B
Go
9 lines
122 B
Go
|
package audittask
|
||
|
|
||
|
// Reset pops all tasks from the queue.
|
||
|
func (m *Manager) Reset() {
|
||
|
for len(m.ch) > 0 {
|
||
|
<-m.ch
|
||
|
}
|
||
|
}
|