Skip to content
Snippets Groups Projects
Unverified Commit 73b213ce authored by Pascal Mathis's avatar Pascal Mathis Committed by GitHub
Browse files

fix: explicit caching of null for docker lookups (#6536)

parent b277dfe7
No related branches found
No related tags found
No related merge requests found
...@@ -368,7 +368,7 @@ export async function getDigest( ...@@ -368,7 +368,7 @@ export async function getDigest(
); );
} }
const cacheMinutes = 30; const cacheMinutes = 30;
await globalCache.set(cacheNamespace, cacheKey, null, cacheMinutes); await globalCache.set(cacheNamespace, cacheKey, digest, cacheMinutes);
return digest; return digest;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment