Skip to content

Commit

Permalink
log: fallback result "from" value starts from 0 instead of 1
Browse files Browse the repository at this point in the history
  • Loading branch information
urlesistiana committed Oct 5, 2022
1 parent 301d78e commit 2465865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/executable_seq/fallback.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func (f *FallbackNode) doFallback(ctx context.Context, qCtx *query_context.Conte
c <- &parallelECSResult{
qCtx: qCtxP,
err: err,
from: 1,
from: 0,
}
}()

Expand All @@ -288,7 +288,7 @@ func (f *FallbackNode) doFallback(ctx context.Context, qCtx *query_context.Conte
c <- &parallelECSResult{
qCtx: qCtxS,
err: err,
from: 2,
from: 1,
}
}()

Expand Down

0 comments on commit 2465865

Please sign in to comment.