GCP - Cloud Functions
Consider this Cloud Function triggered by a Pub/Sub topic named 'updates'. What will happen when a message is published to 'updates'?
exports.processUpdate = (event, context) => {
const message = Buffer.from(event.data, 'base64').toString();
console.log(`Received message: ${message}`);
};