mastodon websocket: bring back infinity timeout
authorWilliam Pitcock <nenolod@dereferenced.org>
Thu, 28 Feb 2019 16:23:24 +0000 (16:23 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Thu, 28 Feb 2019 16:23:24 +0000 (16:23 +0000)
lib/pleroma/web/mastodon_api/websocket_handler.ex

index edab961f0a44faf5c80fb0252013498737541bb0..bb7ecad698a29b3b13f1e786299200112a285e39 100644 (file)
@@ -23,13 +23,16 @@ defmodule Pleroma.Web.MastodonAPI.WebsocketHandler do
   ]
   @anonymous_streams ["public", "public:local", "hashtag"]
 
-  def init(%{qs: qs} = req, _state) do
+  # Handled by periodic keepalive in Pleroma.Web.Streamer.
+  @timeout :infinity
+
+  def init(%{qs: qs} = req, state) do
     with params <- :cow_qs.parse_qs(qs),
          access_token <- List.keyfind(params, "access_token", 0),
          {_, stream} <- List.keyfind(params, "stream", 0),
          {:ok, user} <- allow_request(stream, access_token),
          topic when is_binary(topic) <- expand_topic(stream, params) do
-      {:cowboy_websocket, req, %{user: user, topic: topic}}
+      {:cowboy_websocket, req, %{user: user, topic: topic}, %{idle_timeout: @timeout}}
     else
       {:error, code} ->
         Logger.debug("#{__MODULE__} denied connection: #{inspect(code)} - #{inspect(req)}")