Skip to content

Commit

Permalink
fix: explicit caching of null for docker lookups (#6536)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppmathis committed Jun 17, 2020
1 parent b277dfe commit 73b213c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/datasource/docker/index.ts
Expand Up @@ -368,7 +368,7 @@ export async function getDigest(
);
}
const cacheMinutes = 30;
await globalCache.set(cacheNamespace, cacheKey, null, cacheMinutes);
await globalCache.set(cacheNamespace, cacheKey, digest, cacheMinutes);
return digest;
}

Expand Down

0 comments on commit 73b213c

Please sign in to comment.