Skip to content

Commit cff0430

Browse files
committed
fix(auth): do not pass invalid credentials
1 parent 4c173ac commit cff0430

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/datasource/graphene/backend.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ export class GrapheneMultiscaleMeshSource extends WithParameters(
316316
chunk: MultiscaleFragmentChunk,
317317
abortSignal: AbortSignal,
318318
): Promise<void> {
319-
const { credentialsProvider, parameters } = this;
319+
const { parameters } = this;
320320
const manifestChunk = chunk.manifestChunk! as GrapheneMultiscaleManifestChunk;
321321
const chunkIndex = chunk.chunkIndex;
322322
const { fragmentIds } = manifestChunk;
@@ -328,7 +328,7 @@ export class GrapheneMultiscaleMeshSource extends WithParameters(
328328
fragmentId = fragmentId.substring(fragmentId.indexOf(":") + 1);
329329
}
330330
const response = await getFragmentDownloadPromise(
331-
credentialsProvider,
331+
undefined,
332332
fragmentId,
333333
parameters,
334334
abortSignal,

0 commit comments

Comments
 (0)