Skip to content

Commit

Permalink
fix: passing request correctly during pollForResponse Processing stat…
Browse files Browse the repository at this point in the history
…us (#909)
  • Loading branch information
krpeacock authored Aug 23, 2024
1 parent 990fdf0 commit 4bd9ce7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

### Changed

- fix: passing `request` correctly during pollForResponse `Processing` status
- credit: [Senior Joinu](https://forum.dfinity.org/t/timestamp-failed-to-pass-the-watermark-after-retrying-the-configured-3-times/29180/11?)
- ci: removing headless browser tests pending a rewrite
- ci: changing token for creating release

Expand Down
2 changes: 1 addition & 1 deletion packages/agent/src/polling/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export async function pollForResponse(
case RequestStatusResponseStatus.Processing:
// Execute the polling strategy, then retry.
await strategy(canisterId, requestId, status);
return pollForResponse(agent, canisterId, requestId, strategy, currentRequest);
return pollForResponse(agent, canisterId, requestId, strategy, currentRequest, blsVerify);

case RequestStatusResponseStatus.Rejected: {
const rejectCode = new Uint8Array(
Expand Down

0 comments on commit 4bd9ce7

Please sign in to comment.