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/02/03 23:37:44 UTC

[incubator-ponymail-foal] branch master updated (5164e27 -> 9dd3afe)

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 5164e27  Now trigger for all server changes
     new 3c525e3  Need to set loop as well
     new 9dd3afe  Bump server 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           | 1 +
 server/server_version.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

[incubator-ponymail-foal] 02/02: Bump server 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 9dd3afebc7c7adfd689bbb0f6c8086f08391c00d
Author: Sebb <se...@apache.org>
AuthorDate: Thu Feb 3 23:37:30 2022 +0000

    Bump server 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 16f065a..7c85ec0 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 = '60c46d6'
+PONYMAIL_SERVER_VERSION = '3c525e3'

[incubator-ponymail-foal] 01/02: Need to set loop as well

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 3c525e38185300e8cc7aa651ed36bb4e0b667d01
Author: Sebb <se...@apache.org>
AuthorDate: Thu Feb 3 23:37:13 2022 +0000

    Need to set loop as well
---
 server/main.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server/main.py b/server/main.py
index 70fe6fd..b4d1340 100644
--- a/server/main.py
+++ b/server/main.py
@@ -244,6 +244,7 @@ class Server(plugins.server.BaseServer):
 
     def run(self):
         loop = asyncio.new_event_loop()
+        asyncio.set_event_loop(loop)
         try:
             loop.run_until_complete(self.server_loop())
         except KeyboardInterrupt: