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 2021/12/29 00:45:28 UTC

[incubator-ponymail-foal] branch master updated (5c4a903 -> fb1e70e)

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 5c4a903  Update server version
     new 800c62e  Fix typing bug
     new fb1e70e  Update 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           | 3 ---
 server/plugins/server.py | 3 +++
 server/server_version.py | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

[incubator-ponymail-foal] 02/02: Update 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 fb1e70efc2bc9a47c59e9285d74e391c6a33978b
Author: Sebb <se...@apache.org>
AuthorDate: Wed Dec 29 00:45:19 2021 +0000

    Update 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 b41632c..82ed437 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 = '6d02e81'
+PONYMAIL_SERVER_VERSION = '800c62e'

[incubator-ponymail-foal] 01/02: Fix typing bug

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 800c62e12ad98f1e40ea7f19fa112ece08cba1e9
Author: Sebb <se...@apache.org>
AuthorDate: Wed Dec 29 00:45:02 2021 +0000

    Fix typing bug
---
 server/main.py           | 3 ---
 server/plugins/server.py | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/server/main.py b/server/main.py
index b7e9447..9535e86 100644
--- a/server/main.py
+++ b/server/main.py
@@ -68,9 +68,6 @@ class Server(plugins.server.BaseServer):
         self.api_logger = None
         self.foal_version = PONYMAIL_FOAL_VERSION
         self.server_version = PONYMAIL_SERVER_VERSION
-        # provided by background.py
-        self.library_version: str
-        self.engine_version: str
 
         # Make a pool of database connections for async queries
         pool_size = self.config.database.pool_size
diff --git a/server/plugins/server.py b/server/plugins/server.py
index c03e7d3..8d7ddd4 100644
--- a/server/plugins/server.py
+++ b/server/plugins/server.py
@@ -52,3 +52,6 @@ class BaseServer:
     dbpool: asyncio.Queue
     runners: plugins.offloader.ExecutorPool
     streamlock: asyncio.Lock
+    # provided by background.py
+    library_version: str
+    engine_version: str