diff options
| -rw-r--r-- | changelog.d/healthcheck-disabled-error.fix | 1 | ||||
| -rw-r--r-- | lib/pleroma/web/twitter_api/controllers/util_controller.ex | 5 | ||||
| -rw-r--r-- | test/pleroma/web/twitter_api/util_controller_test.exs | 2 | 
3 files changed, 6 insertions, 2 deletions
diff --git a/changelog.d/healthcheck-disabled-error.fix b/changelog.d/healthcheck-disabled-error.fix new file mode 100644 index 000000000..984384a52 --- /dev/null +++ b/changelog.d/healthcheck-disabled-error.fix @@ -0,0 +1 @@ +TwitterAPI: Return proper error when healthcheck is disabled diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex index d5a24ae6c..ca8a98960 100644 --- a/lib/pleroma/web/twitter_api/controllers/util_controller.ex +++ b/lib/pleroma/web/twitter_api/controllers/util_controller.ex @@ -345,13 +345,16 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do    end    def healthcheck(conn, _params) do -    with true <- Config.get([:instance, :healthcheck]), +    with {:cfg, true} <- {:cfg, Config.get([:instance, :healthcheck])},           %{healthy: true} = info <- Healthcheck.system_info() do        json(conn, info)      else        %{healthy: false} = info ->          service_unavailable(conn, info) +      {:cfg, false} -> +        service_unavailable(conn, %{"error" => "Healthcheck disabled"}) +        _ ->          service_unavailable(conn, %{})      end diff --git a/test/pleroma/web/twitter_api/util_controller_test.exs b/test/pleroma/web/twitter_api/util_controller_test.exs index a4da23635..d06ae71aa 100644 --- a/test/pleroma/web/twitter_api/util_controller_test.exs +++ b/test/pleroma/web/twitter_api/util_controller_test.exs @@ -106,7 +106,7 @@ defmodule Pleroma.Web.TwitterAPI.UtilControllerTest do          |> get("/api/pleroma/healthcheck")          |> json_response_and_validate_schema(503) -      assert response == %{} +      assert response == %{"error" => "Healthcheck disabled"}      end      test "returns 200 when healthcheck enabled and all ok", %{conn: conn} do  | 
