Skip to content

Commit

Permalink
ParallelQueryExecutionContextBase breaks use of abortSignal (#18544)
Browse files Browse the repository at this point in the history
* ParallelQueryExecutionContextBase breaks use of abortSignal in FeedOptions

* update object syntax

Co-authored-by: Jason Amos <digitalamerica@gmail.com>
  • Loading branch information
jay-most and vindicatesociety authored Apr 6, 2022
1 parent b89e46c commit 9ff8ad5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ export abstract class ParallelQueryExecutionContextBase implements ExecutionCont
sqlQuerySpec["query"] = rewrittenQuery;
}

const options = JSON.parse(JSON.stringify(this.options));
const options = { ...this.options };
options.continuationToken = continuationToken;

return new DocumentProducer(
Expand Down

0 comments on commit 9ff8ad5

Please sign in to comment.