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:16:44 UTC

[incubator-ponymail-foal] branch master updated (1ccfc08 -> c4f89eb)

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 1ccfc08  Bump server version
     new 60c46d6  Fix deprecation warning
     new c4f89eb  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           | 2 +-
 server/server_version.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

[incubator-ponymail-foal] 01/02: Fix deprecation warning

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 60c46d6e3673268338bc5bf80513d4ff1abc4241
Author: Sebb <se...@apache.org>
AuthorDate: Thu Feb 3 23:15:29 2022 +0000

    Fix deprecation warning
---
 server/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/main.py b/server/main.py
index c8e5bd3..70fe6fd 100644
--- a/server/main.py
+++ b/server/main.py
@@ -243,7 +243,7 @@ class Server(plugins.server.BaseServer):
             await self.dbpool.get_nowait().client.close()
 
     def run(self):
-        loop = asyncio.get_event_loop()
+        loop = asyncio.new_event_loop()
         try:
             loop.run_until_complete(self.server_loop())
         except KeyboardInterrupt:

[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 c4f89ebdb162dac99104b1b73e9e65a6193bba17
Author: Sebb <se...@apache.org>
AuthorDate: Thu Feb 3 23:15:40 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 eea413e..16f065a 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 = '545d42e'
+PONYMAIL_SERVER_VERSION = '60c46d6'