Skip to content

Commit

Permalink
ALL-3458 Fix lb archive fallback (#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hathoriel authored Nov 13, 2023
1 parent 8790c23 commit 4be940b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [4.1.28] - 2023.11.13
### Fixed
- Fixed lb archive fallback

## [4.1.27] - 2023.11.13
### Fixed
- Fixed Algorand `ApplicationSearchParams` to camelCase.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tatumio/tatum",
"version": "4.1.27",
"version": "4.1.28",
"description": "Tatum JS SDK",
"author": "Tatum",
"repository": "https://github.com/tatumio/tatum-js",
Expand Down
2 changes: 1 addition & 1 deletion src/service/rpc/generic/LoadBalancer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ export class LoadBalancer implements AbstractRpcInterface {
return await this.connector.rpcCall(url, rpcCall)
} catch (e) {
await this.handleFailedRpcCall({ rpcCall, e, nodeType: type, requestType: RequestType.RPC, url })
return await this.rawRpcCall(rpcCall)
return await this.rawRpcCall(rpcCall, archive)
}
}

Expand Down

0 comments on commit 4be940b

Please sign in to comment.