Process every record from kinesis as b64 buffer

pull/218/head
Frostebite 2021-02-07 17:28:38 +00:00
parent 1f8ad273a3
commit 77f6e7aed3
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -143,7 +143,7 @@ class AWS {
if (records.Records.length > 0) {
for (let index = 0; index < records.Records.length; index++) {
const element = records.Records[index];
core.info(Buffer.from(element.Data.toString('utf8'), 'base64').toString('utf8'));
core.info(element.Data.toString('utf8'));
}
}
}