Skip to content

Commit

Permalink
fix(precomputed): fix non-sharded annotation spatial index chunk URLs
Browse files Browse the repository at this point in the history
Fixes #700.
  • Loading branch information
jbms committed Jan 23, 2025
1 parent 8217299 commit f343058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datasource/precomputed/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ export class PrecomputedAnnotationSpatialIndexSourceBackend extends WithParamete
const { chunkGridPosition } = chunk;
if (shardedKvStore === undefined) {
const { kvStore } = this;
const path = `${kvStore.path}/${chunkGridPosition.join("_")}`;
const path = `${kvStore.path}${chunkGridPosition.join("_")}`;
response = await kvStore.store.read(path, { signal });
} else {
const { upperChunkBound } = this.spec;
Expand Down

0 comments on commit f343058

Please sign in to comment.