diff --git a/.changeset/pretty-pears-pay.md b/.changeset/pretty-pears-pay.md new file mode 100644 index 0000000000..f32132af0e --- /dev/null +++ b/.changeset/pretty-pears-pay.md @@ -0,0 +1,5 @@ +--- +'@milaboratories/pl-drivers': patch +--- + +Update request timeout for ClientLs to 60 seconds diff --git a/lib/node/pl-drivers/src/clients/ls_api.ts b/lib/node/pl-drivers/src/clients/ls_api.ts index 8581400631..a302eb9227 100644 --- a/lib/node/pl-drivers/src/clients/ls_api.ts +++ b/lib/node/pl-drivers/src/clients/ls_api.ts @@ -28,7 +28,7 @@ export class ClientLs { resourceId: rInfo.id, location: path, }, - addRTypeToMetadata(rInfo.type, options), + addRTypeToMetadata(rInfo.type, { ...options, timeout: 60_000 }), ).response; } }