From 70872bc3245b97db27694a80ec87a7ff6108dacc Mon Sep 17 00:00:00 2001 From: "H.John Choi" Date: Tue, 25 Oct 2022 06:11:30 +0900 Subject: [PATCH] Update subscribe-all-from-events.js simple typo: `libeProcessingStarted` to `liveProcessingStarted` --- samples/subscribe-all-from-events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/subscribe-all-from-events.js b/samples/subscribe-all-from-events.js index 3b772a8..309bc4b 100644 --- a/samples/subscribe-all-from-events.js +++ b/samples/subscribe-all-from-events.js @@ -15,7 +15,7 @@ const eventAppeared = (subscription, event) => console.log("Event received", res const subscriptionDropped = (subscription, reason, error) => console.log("Subscription dropped", reason, error); -const libeProcessingStarted = () => console.log("Live processing started."); +const liveProcessingStarted = () => console.log("Live processing started."); const credentials = new client.UserCredentials("admin", "changeit");