Skip to content

Commit

Permalink
fix: use settings in fetch_many
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Oct 25, 2024
1 parent df706f4 commit 1f954d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rs-sdk/src/platform/fetch_many.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ impl FetchMany<Identifier, Documents> for Document {
) -> Result<Documents, Error> {
let document_query: &DocumentQuery = &query.query(sdk.prove())?;

retry(RequestSettings::default(), |settings| async move {
retry(sdk.dapi_client_settings, |settings| async move {
let request = document_query.clone();

let ExecutionResponse {
Expand Down

0 comments on commit 1f954d5

Please sign in to comment.