You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2022/01/22 14:06:00 UTC

[incubator-ponymail-foal] branch master updated: Syntax; show output

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new 0b32377  Syntax; show output
0b32377 is described below

commit 0b32377778b8ed8f0413fb1d68adc3ec6bdce316
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jan 22 14:05:50 2022 +0000

    Syntax; show output
---
 .github/workflows/integration-tests.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index 18bb670..b0471f3 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -42,8 +42,12 @@ jobs:
         pip install html2text # optional dependency, but needed for tests
     - name: Basic test
       run: |
-        curl -sq http://localhost:9200/_cluster/health?pretty"
+        curl -sq "http://localhost:9200/_cluster/health?level=indices&pretty"
     - name: Database setup
       run: |
         cd tools
-        ./setup.py --defaults --devel
\ No newline at end of file
+        ./setup.py --defaults --devel
+    - name: Show Database
+      run: |
+        curl -sq "http://localhost:9200/_cat/indices?v"
+        curl -sq "http://localhost:9200/_cat/settings?pretty"