From 0bb3d424a7942f66cc14b3e76a4c1a6e10e3c8c0 Mon Sep 17 00:00:00 2001 From: Luke Bakken Date: Wed, 17 Jun 2020 11:32:38 -0700 Subject: [PATCH 1/3] Show where epmd is located --- tools/appveyor/install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/appveyor/install.ps1 b/tools/appveyor/install.ps1 index d2502b60c3..d91224caba 100644 --- a/tools/appveyor/install.ps1 +++ b/tools/appveyor/install.ps1 @@ -87,13 +87,13 @@ $rabbitmqctl_path = "$path\rabbitmq_server-$rabbitmq_version\sbin\rabbitmqctl.ba [Environment]::SetEnvironmentVariable('RABBITMQ_RABBITMQCTL_PATH', $rabbitmqctl_path, 'Machine') $env:RABBITMQ_RABBITMQCTL_PATH = $rabbitmqctl_path -Write-Host '[INFO] Waiting for epmd to report that RabbitMQ has started' - $epmd_running = $false [int]$count = 1 $epmd = [System.IO.Path]::Combine($erlang_home, "erts-$erlang_erts_version", "bin", "epmd.exe") +Write-Host "[INFO] Waiting for epmd ($epmd) to report that RabbitMQ has started" + Do { $epmd_running = & $epmd -names | Select-String -CaseSensitive -SimpleMatch -Quiet -Pattern 'name rabbit at port 25672' if ($epmd_running -eq $true) { From 9b37fae1065fa4f45cc9665d2f7148de58936834 Mon Sep 17 00:00:00 2001 From: Luke Bakken Date: Wed, 17 Jun 2020 11:46:09 -0700 Subject: [PATCH 2/3] Show epmd -names output --- tools/appveyor/install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/appveyor/install.ps1 b/tools/appveyor/install.ps1 index d91224caba..8980c9a394 100644 --- a/tools/appveyor/install.ps1 +++ b/tools/appveyor/install.ps1 @@ -95,6 +95,7 @@ $epmd = [System.IO.Path]::Combine($erlang_home, "erts-$erlang_erts_version", "bi Write-Host "[INFO] Waiting for epmd ($epmd) to report that RabbitMQ has started" Do { + & $epmd -names $epmd_running = & $epmd -names | Select-String -CaseSensitive -SimpleMatch -Quiet -Pattern 'name rabbit at port 25672' if ($epmd_running -eq $true) { Write-Host '[INFO] epmd reports that RabbitMQ is at port 25672' From 2b205fab6d31b3fda47f8307f7cdc470561ee494 Mon Sep 17 00:00:00 2001 From: Luke Bakken Date: Wed, 17 Jun 2020 11:48:40 -0700 Subject: [PATCH 3/3] Bump to 7.0.0 --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 81cf94e29b..a1128951e2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: "6.1.1.{build}" +version: "7.0.0.{build}" platform: Any CPU configuration: Release