Skip to content

Commit 5f7fc7b

Browse files
test(nrdot): fix stale branch reference in rabbitmq-al2023-amd64 recipe URL
The test def's recipe_content_url pointed at 'newrelic/open-install- library/rabbitmq-recipe-changes/...' — a development branch that has been deleted. curl returned 404 on every run, so the newrelic install never actually loaded the recipe content, stopping silently after 'Connecting to the New Relic platform' phase. Ansible then registered this as an SSH-drop after ~36s of nothing happening on the EC2. Every run of this PR has reproduced the failure identically because the URL is deterministically 404 — no transient. Point the URL at main (where nrdot/rabbitmq/rhel.yml actually lives). Change confined to this one file.
1 parent 2c8da09 commit 5f7fc7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/definitions/nrdot/rabbitmq/rabbitmq-al2023-amd64.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"source_repository": "https://github.com/newrelic/open-install-library.git",
3737
"deploy_script_path": "test/deploy/linux/newrelic-cli/install-recipe/roles",
3838
"params": {
39-
"recipe_content_url": "https://raw.githubusercontent.com/newrelic/open-install-library/rabbitmq-recipe-changes/recipes/newrelic/infrastructure/nrdot/rabbitmq/rhel.yml",
39+
"recipe_content_url": "https://raw.githubusercontent.com/newrelic/open-install-library/main/recipes/newrelic/infrastructure/nrdot/rabbitmq/rhel.yml",
4040
"recipe_targeted": "nrdot-rabbitmq",
4141
"validate_output": "NRDOT RabbitMQ\\s+\\(installed\\)",
4242
"env_var": "NEW_RELIC_CLI_SKIP_CORE=1 NR_CLI_RABBITMQ_ENDPOINT=http://localhost:15672 NR_CLI_RABBITMQ_USERNAME=admin NR_CLI_RABBITMQ_PASSWORD=admin NR_CLI_RABBITMQ_DEPLOYMENT_NAME=rabbitmq-al2023-amd64"

0 commit comments

Comments
 (0)