From 9804b77a1548e14105709d6934cd0e6fe68d07aa Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Thu, 8 Aug 2024 20:47:05 -0400 Subject: [PATCH] Fix worker typo misspelled cloud --- apps/worker/lib/worker/application.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/worker/lib/worker/application.ex b/apps/worker/lib/worker/application.ex index 7495bec39..8e1347fba 100644 --- a/apps/worker/lib/worker/application.ex +++ b/apps/worker/lib/worker/application.ex @@ -26,7 +26,7 @@ defmodule Worker.Application do def broker() do case Worker.conf(:start_broker) do - true -> [{Worker.Conduit.Broker, []}, Core.Services.Coud.Poller] + true -> [{Worker.Conduit.Broker, []}, Core.Services.Cloud.Poller] _ -> [] end end