From e5ae00ab992c3402b43d40566fd5ef690ba0d251 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 3 Mar 2025 08:15:46 +0000 Subject: [PATCH] fix(portal): norely -> noreply in gateway/channel.ex (#8329) Fixes a typo that snuck in in #8267 --- elixir/apps/api/lib/api/gateway/channel.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/apps/api/lib/api/gateway/channel.ex b/elixir/apps/api/lib/api/gateway/channel.ex index c81607da9..200c2eacd 100644 --- a/elixir/apps/api/lib/api/gateway/channel.ex +++ b/elixir/apps/api/lib/api/gateway/channel.ex @@ -75,7 +75,7 @@ defmodule API.Gateway.Channel do # Resource create message is a no-op for the Gateway as the Resource # details will be sent to the Gateway on an :authorize_flow message def handle_info({:create_resource, _resource_id}, socket) do - {:norely, socket} + {:noreply, socket} end # Resource is updated, eg. traffic filters are changed