diff --git a/.github/wait_for_opensearch.php b/.github/wait_for_opensearch.php index 10c6303a..fb252a24 100644 --- a/.github/wait_for_opensearch.php +++ b/.github/wait_for_opensearch.php @@ -11,7 +11,8 @@ try { $client = ClientBuilder::create()->build(); $client->ping(); - echo 'Is up and running' . PHP_EOL; + $info = $client->info(); + echo 'OpenSearch ' . $info['version']['number'] . ' is up and running' . PHP_EOL; exit(0); } catch (Throwable $e) { if ($retries === $maxRetries) {