Skip to content

Commit cdc9958

Browse files
committed
FIXUP
1 parent bbe2390 commit cdc9958

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mix.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ defmodule Postgrex.Mixfile do
3333
{:jason, "~> 1.0", optional: true},
3434
{:table, "~> 0.1.0", optional: true},
3535
{:decimal, "~> 1.5 or ~> 2.0"},
36-
{:db_connection, "~> 2.1"},
37-
{:connection, "~> 1.1"}
36+
{:db_connection, "~> 2.1"}
3837
]
3938
end
4039

test/simple_connection_test.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ defmodule SimpleConnectionTest do
126126
task =
127127
Task.async(fn ->
128128
# Simulate a small delay, because it used to cause flaky test failures
129-
# in the past.
129+
# in the past. We keep the delay even if we have tracing, to avoid
130+
# regressions in this test.
130131
# https://github.com/elixir-ecto/postgrex/actions/runs/4151824827/jobs/7182370012
131132
Process.sleep(10)
132133
SC.call(context.conn, {:query, "SELECT 1"})

0 commit comments

Comments
 (0)