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/26 12:50:52 UTC

[incubator-ponymail-foal] branch master updated (4a8ded5 -> 63ed55e)

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

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


    from 4a8ded5  Why are we failing
     new 9647252  revert: is it causing int-test failure?
     new 63ed55e  Bump version

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 server/main.py           | 4 +++-
 server/server_version.py | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

[incubator-ponymail-foal] 01/02: revert: is it causing int-test failure?

Posted by se...@apache.org.
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

commit 9647252535df27ad4eff5ac4d94d1f0a14c492bf
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jan 26 12:50:22 2022 +0000

    revert: is it causing int-test failure?
---
 server/main.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/server/main.py b/server/main.py
index 547bb59..bc5a014 100644
--- a/server/main.py
+++ b/server/main.py
@@ -227,10 +227,12 @@ class Server(plugins.server.BaseServer):
         await plugins.background.run_tasks(self)
 
     def run(self):
+        loop = asyncio.get_event_loop()
         try:
-            asyncio.run(self.server_loop())
+            loop.run_until_complete(self.server_loop())
         except KeyboardInterrupt:
             pass
+        loop.close()
 
 
 if __name__ == "__main__":

[incubator-ponymail-foal] 02/02: Bump version

Posted by se...@apache.org.
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

commit 63ed55e3963a082a4bb0ebef4b890317f46f2886
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jan 26 12:50:44 2022 +0000

    Bump version
---
 server/server_version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/server_version.py b/server/server_version.py
index 28e8e54..49207cf 100644
--- a/server/server_version.py
+++ b/server/server_version.py
@@ -1,2 +1,2 @@
 # This file is generated by server/update_version.sh
-PONYMAIL_SERVER_VERSION = 'd13b7bc'
+PONYMAIL_SERVER_VERSION = '9647252'