From eabc1986c334719dca2d163ce67ca9bf3e194d2b Mon Sep 17 00:00:00 2001 From: Anugerah Erlaut Date: Mon, 31 May 2021 15:41:33 +0700 Subject: [PATCH] fix nonexistent property access --- src/utils/cache-request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/cache-request.js b/src/utils/cache-request.js index 1f03a4b54..9baaef051 100644 --- a/src/utils/cache-request.js +++ b/src/utils/cache-request.js @@ -38,7 +38,7 @@ const cacheSetResponse = async (data, ttl = 129600) => { experimentId: data.request.experimentId, body: data.request.body, sandboxId, - PipelineRunETag: data.PipelineRunETag, + PipelineRunETag: data.request.PipelineRunETag, }); logger.log(`Putting data in cache under key ${key}`);