Skip to content

Commit 5b48b99

Browse files
test why 9.4 is not working
1 parent 36a25e1 commit 5b48b99

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Earthfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ integration-test-mysql:
9393
--default-authentication-plugin=mysql_native_password; \
9494
# wait for mysql to start
9595
while ! mysqladmin ping --host=127.0.0.1 --port=3306 --protocol=TCP; do \
96+
docker logs mysql;
9697
test "$(date +%s)" -le "$timeout" || (echo "timed out waiting for mysql"; exit 1); \
9798
echo "waiting for mysql"; \
9899
sleep 1; \

lib/ecto/adapters/myxql.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ defmodule Ecto.Adapters.MyXQL do
558558
if Path.type(cmd) == :absolute do
559559
cmd
560560
else
561-
:os.find_executable(cmd) || :erlang.error(:enoent, [cmd, args, cmd_opts])
561+
System.find_executable(cmd) || :erlang.error(:enoent, [cmd, args, cmd_opts])
562562
end
563563

564564
port_opts = port_opts(cmd_opts, args: args)

0 commit comments

Comments
 (0)