Skip to content

Commit 0bb3d42

Browse files
committed
Show where epmd is located
1 parent 7750851 commit 0bb3d42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/appveyor/install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ $rabbitmqctl_path = "$path\rabbitmq_server-$rabbitmq_version\sbin\rabbitmqctl.ba
8787
[Environment]::SetEnvironmentVariable('RABBITMQ_RABBITMQCTL_PATH', $rabbitmqctl_path, 'Machine')
8888
$env:RABBITMQ_RABBITMQCTL_PATH = $rabbitmqctl_path
8989

90-
Write-Host '[INFO] Waiting for epmd to report that RabbitMQ has started'
91-
9290
$epmd_running = $false
9391
[int]$count = 1
9492

9593
$epmd = [System.IO.Path]::Combine($erlang_home, "erts-$erlang_erts_version", "bin", "epmd.exe")
9694

95+
Write-Host "[INFO] Waiting for epmd ($epmd) to report that RabbitMQ has started"
96+
9797
Do {
9898
$epmd_running = & $epmd -names | Select-String -CaseSensitive -SimpleMatch -Quiet -Pattern 'name rabbit at port 25672'
9999
if ($epmd_running -eq $true) {

0 commit comments

Comments
 (0)