From febf8dc79b5a4b5e906c7937f44d0d8c6d829c1e Mon Sep 17 00:00:00 2001 From: Tony Pitale Date: Wed, 9 Oct 2024 14:20:33 -0500 Subject: [PATCH] Add missing PR to changelog; attempt to fix integration tests --- .github/workflows/elixir.yml | 2 +- CHANGELOG.md | 2 +- examples/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 ```