Isaak Tsalicoglou

Results 7 issues of Isaak Tsalicoglou

1. Added an optional parameter `ext_if6` for an IPv6 interface in `pf.conf` interface next to the default `ext_if` (for IPv4) in `bastille.conf`. 2. Adjusted `rdr.sh` so that rdr rules are...

enhancement

In partial response to [issue 88](https://github.com/elixir-soap/soap/issues/88), I noticed that Soap fails completely if my application does not define `config :soap, :globals` in its `config/config.exs`, even though a) HTTPoison is the...

**[MANDATORY] Describe the bug [MANDATORY]** Bastille was running just fine on a FreeBSD 14.0 host. I upgraded the host to 14.1 and all jails lost access to the internet. To...

bug

```elixir defp put_content_length_header(headers, "", :head), do: headers ``` This extra function clause in `lib/ex_aws/operation/s3.ex` prevents the `content-length` header from being added to the headers of a `HEAD` request with an...

- Works with SQLite3 (without row-level locking) - Conditionally disable locking in `AccountBalance.lock_cond/2` when database is SQLite3 - Test configuration for SQLite3 - Tagged 2 locking-dependent tests that are disabled...

## Versions: * Elixir 1.17 * ecto 3.12.5 * ecto_sql 3.12.1 * ecto_sqlite3 0.15.1 * exqlite 0.29.0 ## Relevant code ```elixir def list_top_n_customers_by_order_count(n \\ 5) when is_integer(n) do Customer |>...

Req 0.5.15 does not handle relative `:url` paths. `URI.merge/2` is capable of constructing URLs from relative path segments. For example: ```elixir iex> base_url = "http://localhost:8999/api" iex> merged = URI.merge(base_url, "../health")...