From 833d8f2270bd1bc05768667dab925edf39eb3294 Mon Sep 17 00:00:00 2001 From: Himaja Dhanyamraju <43470317+HimajaDhanyamraju2@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:00:49 +0530 Subject: [PATCH] Build check (#237) Signed-off-by: HimajaDhanyamraju2 --- consolidator/consolidator_service.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consolidator/consolidator_service.bal b/consolidator/consolidator_service.bal index 68219fa..d1f8940 100644 --- a/consolidator/consolidator_service.bal +++ b/consolidator/consolidator_service.bal @@ -95,7 +95,7 @@ isolated function startConsolidator() returns error? { kafka:ConsumerRecord[] records = check conn:websubEventConsumer->poll(config:POLLING_INTERVAL); foreach kafka:ConsumerRecord currentRecord in records { string lastPersistedData = check string:fromBytes(currentRecord.value); - log:printInfo("websub event received in consolidator",payload=lastPersistedData); + log:printInfo("Websub event received in consolidator",payload=lastPersistedData); error? result = processPersistedData(lastPersistedData); if result is error { log:printError("Error occurred while processing received event ", 'error = result);