• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

supabase / supavisor / e5e7ebfe80dbec4965226225050d4ef5c8216e88-PR-605

21 Feb 2025 02:35PM UTC coverage: 45.973% (-0.03%) from 46.003%
e5e7ebfe80dbec4965226225050d4ef5c8216e88-PR-605

Pull #605

github

hauleth
fix: remaining SSL connections that need to set `verify_none` option
Pull Request #605: fix: remaining SSL connections that need to set `verify_none` option

2 of 9 new or added lines in 3 files covered. (22.22%)

267 existing lines in 26 files now uncovered.

959 of 2086 relevant lines covered (45.97%)

635.02 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/lib/supavisor_web/controllers/fallback_controller.ex
1
defmodule SupavisorWeb.FallbackController do
2
  @moduledoc """
3
  Translates controller action results into valid `Plug.Conn` responses.
4

5
  See `Phoenix.Controller.action_fallback/1` for more details.
6
  """
7
  use SupavisorWeb, :controller
8

9
  # This clause handles errors returned by Ecto's insert/update/delete.
10
  def call(conn, {:error, %Ecto.Changeset{} = changeset}) do
11
    conn
12
    |> put_status(:unprocessable_entity)
13
    |> put_view(SupavisorWeb.ChangesetView)
UNCOV
14
    |> render("error.json", changeset: changeset)
2✔
15
  end
16

17
  # This clause is an example of how to handle resources that cannot be found.
18
  def call(conn, {:error, :not_found}) do
19
    conn
20
    |> put_status(:not_found)
21
    |> put_view(SupavisorWeb.ErrorView)
22
    |> render(:"404")
×
23
  end
24
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc