Merge branch 'main' into feature/308-web-form
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
simon 2026-03-11 02:05:13 +01:00
commit 28f97184b3
7 changed files with 44 additions and 141 deletions

View file

@ -92,10 +92,13 @@ defmodule Mv.Vereinfacht.Client do
@sync_timeout_ms 5_000
# Resolved at compile time so Mix is never called at runtime (Mix is not available in releases).
@env Mix.env()
# In test, skip retries so sync fails fast when no API is running (avoids log spam and long waits).
defp req_http_options do
opts = [receive_timeout: @sync_timeout_ms]
if Mix.env() == :test, do: [retry: false] ++ opts, else: opts
if @env == :test, do: [retry: false] ++ opts, else: opts
end
defp post_and_parse_contact(url, body, api_key) do