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 92048a2cb6003a36bc5252708e66a490a6979909 Author: Daniel Gruno <[email protected]> AuthorDate: Mon Mar 29 10:23:18 2021 +0200 add audit log to tools' ES mod --- tools/plugins/elastic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/plugins/elastic.py b/tools/plugins/elastic.py index 5b77475..f2416f3 100755 --- a/tools/plugins/elastic.py +++ b/tools/plugins/elastic.py @@ -59,6 +59,7 @@ class Elastic: self.db_session = self.dbname + '-session' self.db_notification = self.dbname + '-notification' self.db_mailinglist = self.dbname + '-mailinglist' + self.db_auditlog = self.dbname + '-auditlog' self.db_version = 0 dburl = config.get('elasticsearch', 'dburl', fallback=None)
