Add new FMN settings.

This commit is contained in:
Ralph Bean 2015-02-12 15:03:50 +00:00
parent 7c07be5997
commit 543d0bedb8

View file

@ -22,6 +22,18 @@ config = {
"fmn.consumer.enabled": True, "fmn.consumer.enabled": True,
"fmn.sqlalchemy.uri": "postgresql://{{notifs_db_user}}:{{notifs_db_password}}@db-notifs/notifications", "fmn.sqlalchemy.uri": "postgresql://{{notifs_db_user}}:{{notifs_db_password}}@db-notifs/notifications",
# Auto create accounts for new packagers.
"fmn.autocreate": True,
# Just drop these topics without considering any preferences. They are noise that just clog us up.
"fmn.junk_suffixes": [
'.buildsys.package.list.state.change',
'.buildsys.tag',
'.buildsys.untag',
'.buildsys.repo.init',
'.buildsys.repo.done',
],
# This sets up four threads to handle incoming messages. At the time of # This sets up four threads to handle incoming messages. At the time of
# this commit, all of our fedmsg daemons are running in single-threaded # this commit, all of our fedmsg daemons are running in single-threaded
# mode. If we turn it on globally, we should remove this setting. # mode. If we turn it on globally, we should remove this setting.