Skip to content

Commit 222bcae

Browse files
committed
Amend cache SAM function return message.
1 parent efa98c4 commit 222bcae

File tree

1 file changed

+1
-1
lines changed
  • cache-extension-demo/example-function

1 file changed

+1
-1
lines changed

cache-extension-demo/example-function/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exports.handler = function(event, context, callback) {
1414

1515
const req = https.request(options, res => {
1616
res.on('data', d => {
17-
console.log("Finally got some response here: "+d);
17+
console.log("Retrieved data from the cache: "+d);
1818
return d;
1919
});
2020
});

0 commit comments

Comments
 (0)