Skip to content

Commit 5d6eca2

Browse files
committed
name is not set anymore, options.container is the new place for this
1 parent 3354e53 commit 5d6eca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghcrawler/providers/storage/storageDocStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class AzureStorageDocStore {
9595
// This API can only be used for the 'deadletter' store because we cannot look up documents by type performantly
9696
async count(type, force = false) {
9797
this._ensureDeadletter(type)
98-
const key = `${this.name}:count:${type || ''}`
98+
const key = `${this.options.container}:count:${type || ''}`
9999
if (!force) {
100100
const cachedCount = memoryCache.get(key)
101101
if (cachedCount) {

0 commit comments

Comments
 (0)