diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 7eef6264..b8c996c1 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -139,7 +139,7 @@ jobs: - name: Start integration test dependencies run: | - docker-compose up -d + docker compose up -d until pg_isready -h localhost; do sleep 1; done; until mysqladmin --protocol tcp ping; do sleep 1; done; diff --git a/CHANGELOG.md b/CHANGELOG.md index b4428956..859c35b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### `v1.30` * adjust metadata_reporter :transaction report_error [#443](https://github.com/newrelic/elixir_agent/pull/443) - +* Identify Phoenix LiveView metrics [#424](https://github.com/newrelic/elixir_agent/pull/424) ### `v1.29` diff --git a/examples/README.md b/examples/README.md index eb1bab55..e97aa2a2 100644 --- a/examples/README.md +++ b/examples/README.md @@ -7,7 +7,7 @@ A set example apps demonstrating and validating built-in instrumentation. In CI, these test are always run. When developing locally, you can run the tests easily by first starting the dependent docker services: ``` -docker-compose up +docker compose up mix test ```