From 827da7b5d5dd6873b007587bfc79cfebf2337836 Mon Sep 17 00:00:00 2001 From: Ori Pekelman Date: Mon, 18 Oct 2021 17:15:34 +0200 Subject: [PATCH] Correct Socket Options --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index 821ee871f..1256fbc39 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -55,7 +55,7 @@ if config_env() === :prod do http: [ port: port, compress: true, - transport_options: [socket_opts: [:inet6]] + transport_options: [socket_options: [:inet6]] ], url: [host: backend_url], pubsub_server: ChatApi.PubSub,