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/14 20:14:16 UTC

[incubator-ponymail-foal] branch master updated (1355577 -> a4af6be)

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 1355577  Update version
     new e416fd3  Fix typing error
     new a4af6be  Update 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/plugins/messages.py | 1 +
 server/server_version.py   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

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

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 e416fd3b496d3eaac7ea2d5c6435d65435c7d2de
Author: Sebb <se...@apache.org>
AuthorDate: Tue Dec 14 20:13:48 2021 +0000

    Fix typing error
---
 server/plugins/messages.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server/plugins/messages.py b/server/plugins/messages.py
index 5c049c0..1e72bcc 100644
--- a/server/plugins/messages.py
+++ b/server/plugins/messages.py
@@ -515,6 +515,7 @@ async def get_activity_span(session: plugins.session.SessionObject, query_defuzz
     query_defuzzed = await filter_accessible(session, query_defuzzed)
 
     # Get oldest and youngest doc in single scan, as well as a monthly histogram
+    assert session.database, DATABASE_NOT_CONNECTED
     res = await session.database.search(
         index=session.database.dbs.db_mbox,
         size=0,

[incubator-ponymail-foal] 02/02: Update 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 a4af6befc71f9c0299318aacae60f39020c6c51e
Author: Sebb <se...@apache.org>
AuthorDate: Tue Dec 14 20:14:02 2021 +0000

    Update 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 66c538c..471cab8 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 = '694171e'
+PONYMAIL_SERVER_VERSION = 'e416fd3'