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/27 00:31:26 UTC

[incubator-ponymail-foal] branch master updated: Why no accounts set up

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 86c1409  Why no accounts set up
86c1409 is described below

commit 86c14094efe1c1b51b80450e9aa581bfaa1d69e9
Author: Sebb <se...@apache.org>
AuthorDate: Thu Jan 27 00:31:16 2022 +0000

    Why no accounts set up
---
 .github/workflows/integration-tests.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index c6a9239..15c8053 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -78,7 +78,7 @@ jobs:
     - name: Server
       run: |
         cd server
-        python -u main.py --apilog INFO --logger INFO --stoppable --refreshable > main.log 2>&1 &
+        python -u main.py --apilog INFO --logger DEBUG --stoppable --refreshable > main.log 2>&1 &
         sleep 5 # allow time to start up properly
         curl -sq http://localhost:8080/api/refresh # This will fail if the server is not ready
     - name: Show Database
@@ -99,6 +99,7 @@ jobs:
     - name: Shutdown
       if: always()
       run: |
+        curl -sq "http://localhost:9200/_cat/indices?v"
         curl -sq -H 'Content-Type: application/json' 'localhost:9200/ponymail-account/_search?pretty' -d '{ "size": 1000, "query": { "match_all": {} }}'
         curl -sq -H 'Content-Type: application/json' 'localhost:9200/ponymail-session/_search?pretty' -d '{ "size": 1000, "query": { "match_all": {} }}'
         curl -sq http://localhost:8080/api/stop