This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 2ed4f1a8e0937883c3cb3e0949466f89232310c2 Author: Daniel Gruno <[email protected]> AuthorDate: Mon Mar 29 10:10:43 2021 +0200 add hardcoded auditlog dbname --- server/plugins/database.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/plugins/database.py b/server/plugins/database.py index 1a7b651..8255b97 100644 --- a/server/plugins/database.py +++ b/server/plugins/database.py @@ -35,6 +35,7 @@ class DBNames: self.account = f"{dbprefix}-account" self.session = f"{dbprefix}-session" self.notification = f"{dbprefix}-notification" + self.auditlog = f"{dbprefix}-auditlog" DBError = elasticsearch.ElasticsearchException
