Skip to content

Commit

Permalink
Remove parameter in publish method for code assertion function.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwwendt committed Jan 13, 2025
1 parent 100327a commit d3fc1a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ exports.handler = async function(event) {
const channel = event.channel;

if (pubSubAction === 'publish') {
const res = await publish(channel, false);
const res = await publish(channel);
console.log(res);
return res;
} else if (pubSubAction === 'subscribe') {
Expand Down

0 comments on commit d3fc1a0

Please sign in to comment.