Skip to content

Commit

Permalink
fix: reapply upgrade for Flux 0.82.0
Browse files Browse the repository at this point in the history
This commit reapplies Flux v0.82 upgrade via df41d42,
which was lost before the split.
  • Loading branch information
Christopher Wolff committed Sep 16, 2020
1 parent 09b822e commit 4ed4938
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions task/backend/executor/support_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,11 @@ type fakeQuery struct {

var _ flux.Query = (*fakeQuery)(nil)

func (q *fakeQuery) Done() {}
func (q *fakeQuery) Cancel() { close(q.results) }
func (q *fakeQuery) Statistics() flux.Statistics { return flux.Statistics{} }
func (q *fakeQuery) Results() <-chan flux.Result { return q.results }
func (q *fakeQuery) Done() {}
func (q *fakeQuery) Cancel() { close(q.results) }
func (q *fakeQuery) Statistics() flux.Statistics { return flux.Statistics{} }
func (q *fakeQuery) Results() <-chan flux.Result { return q.results }
func (q *fakeQuery) ProfilerResults() (flux.ResultIterator, error) { return nil, nil }

func (q *fakeQuery) Err() error {
if q.ctxErr != nil {
Expand Down

0 comments on commit 4ed4938

Please sign in to comment.