Skip to content

Commit 5895846

Browse files
committed
fix(auth): do not pass invalid credentials
1 parent 953fdf3 commit 5895846

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
@@ -327,7 +327,7 @@ export class GrapheneMultiscaleMeshSource extends WithParameters(
327327
chunk: MultiscaleFragmentChunk,
328328
abortSignal: AbortSignal,
329329
): Promise<void> {
330-
const { credentialsProvider, parameters } = this;
330+
const { parameters } = this;
331331
const manifestChunk = chunk.manifestChunk! as GrapheneMultiscaleManifestChunk;
332332
const chunkIndex = chunk.chunkIndex;
333333
const { fragmentIds } = manifestChunk;
@@ -339,7 +339,7 @@ export class GrapheneMultiscaleMeshSource extends WithParameters(
339339
fragmentId = fragmentId.substring(fragmentId.indexOf(":") + 1);
340340
}
341341
const response = await getFragmentDownloadPromise(
342-
credentialsProvider,
342+
undefined,
343343
fragmentId,
344344
parameters,
345345
abortSignal,

0 commit comments

Comments
 (0)