We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1adcb94 commit 56bd0d9Copy full SHA for 56bd0d9
lib/result/CloudFetchResultHandler.ts
@@ -73,7 +73,7 @@ export default class CloudFetchResultHandler implements IResultsProvider<ArrowBa
73
throw new Error('CloudFetch link has expired');
74
}
75
76
- const response = await this.fetch(link.fileLink);
+ const response = await this.fetch(link.fileLink, { headers: link.httpHeaders });
77
if (!response.ok) {
78
throw new Error(`CloudFetch HTTP error ${response.status} ${response.statusText}`);
79
0 commit comments