Skip to content

Commit

Permalink
also include status field for purpose of tracking how long container …
Browse files Browse the repository at this point in the history
…startup took
  • Loading branch information
andrewazores committed Jun 10, 2023
1 parent 352050c commit 2343b4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@
<argument>5m</argument>
<argument>sh</argument>
<argument>-c</argument>
<argument>until podman ps --filter health=healthy --format '{{.Names}}' | grep ${cryostat.itest.containerName}; do sleep 5; done</argument>
<argument>until podman ps --filter health=healthy --format '{{.Names}} {{.Status}}' | grep ${cryostat.itest.containerName}; do sleep 5; done</argument>
</arguments>
<skip>${skipITs}</skip>
</configuration>
Expand All @@ -644,7 +644,7 @@
<argument>5m</argument>
<argument>sh</argument>
<argument>-c</argument>
<argument>until podman ps --filter health=healthy --format '{{.Names}}' | grep ${cryostat.itest.jfr-datasource.containerName}; do sleep 5; done</argument>
<argument>until podman ps --filter health=healthy --format '{{.Names}} {{.Status}}' | grep ${cryostat.itest.jfr-datasource.containerName}; do sleep 5; done</argument>
</arguments>
<skip>${skipITs}</skip>
</configuration>
Expand All @@ -661,7 +661,7 @@
<argument>5m</argument>
<argument>sh</argument>
<argument>-c</argument>
<argument>until podman ps --filter health=healthy --format '{{.Names}}' | grep ${cryostat.itest.grafana.containerName}; do sleep 5; done</argument>
<argument>until podman ps --filter health=healthy --format '{{.Names}} {{.Status}}' | grep ${cryostat.itest.grafana.containerName}; do sleep 5; done</argument>
</arguments>
<skip>${skipITs}</skip>
</configuration>
Expand Down

0 comments on commit 2343b4b

Please sign in to comment.