comment out various wsgi_fedmsg_service variables for systems no longer running fedmsg listeners. try to cut down noise of problems so we can determine mbs and pdc issues

This commit is contained in:
Stephen Smoogen 2020-07-23 15:08:05 -04:00
parent 9aaa7dd60c
commit b91f19565a
9 changed files with 8 additions and 32 deletions

View file

@ -8,7 +8,7 @@ freezes: false
# 1) mod_wsgi is configured to use the vars for its own setup
# 2) iptables opens enough ports for all threads for fedmsg
# 3) roles/fedmsg/base/ declares enough fedmsg endpoints for all threads
wsgi_fedmsg_service: tahrir
#wsgi_fedmsg_service: tahrir
wsgi_procs: 2
wsgi_threads: 2

View file

@ -8,7 +8,7 @@ num_cpus: 2
# 1) mod_wsgi is configured to use the vars for its own setup
# 2) iptables opens enough ports for all threads for fedmsg
# 3) roles/fedmsg/base/ declares enough fedmsg endpoints for all threads
wsgi_fedmsg_service: tahrir
#wsgi_fedmsg_service: tahrir
wsgi_procs: 2
wsgi_threads: 2

View file

@ -7,7 +7,7 @@ num_cpus: 2
# 1) mod_wsgi is configured to use the vars for its own setup
# 2) iptables opens enough ports for all threads for fedmsg
# 3) roles/fedmsg/base/ declares enough fedmsg endpoints for all threads
wsgi_fedmsg_service: mbs
#wsgi_fedmsg_service: mbs
wsgi_procs: 2
wsgi_threads: 2

View file

@ -7,7 +7,7 @@ num_cpus: 1
# 1) mod_wsgi is configured to use the vars for its own setup
# 2) iptables opens enough ports for all threads for fedmsg
# 3) roles/fedmsg/base/ declares enough fedmsg endpoints for all threads
wsgi_fedmsg_service: mbs
#wsgi_fedmsg_service: mbs
wsgi_procs: 2
wsgi_threads: 2

View file

@ -7,7 +7,7 @@ num_cpus: 2
# for systems that do not match the above - specify the same parameter in
# the host_vars/$hostname file
wsgi_fedmsg_service: fmn
#wsgi_fedmsg_service: fmn
wsgi_procs: 2
wsgi_threads: 2

View file

@ -7,7 +7,7 @@ num_cpus: 2
# for systems that do not match the above - specify the same parameter in
# the host_vars/$hostname file
wsgi_fedmsg_service: fmn
#wsgi_fedmsg_service: fmn
wsgi_procs: 2
wsgi_threads: 2

View file

@ -8,7 +8,7 @@ num_cpus: 2
# 1) mod_wsgi is configured to use the vars for its own setup
# 2) iptables opens enough ports for all threads for fedmsg
# 3) roles/fedmsg/base/ declares enough fedmsg endpoints for all threads
wsgi_fedmsg_service: nuancier
#wsgi_fedmsg_service: nuancier
wsgi_procs: 2
wsgi_threads: 2

View file

@ -8,7 +8,7 @@ num_cpus: 2
# 1) mod_wsgi is configured to use the vars for its own setup
# 2) iptables opens enough ports for all threads for fedmsg
# 3) roles/fedmsg/base/ declares enough fedmsg endpoints for all threads
wsgi_fedmsg_service: nuancier
#wsgi_fedmsg_service: nuancier
wsgi_procs: 2
wsgi_threads: 2

View file

@ -1,24 +0,0 @@
{% if datacenter == 'iad2' %}
{% if env == 'staging' %}
suffix = 'stg.iad2.fedoraproject.org'
{% else %}
suffix = 'iad2.fedoraproject.org'
vpn_suffix = 'vpn.fedoraproject.org'
{% endif %}
{% else %}
{% if env == 'staging' %}
suffix = 'stg.fedoraproject.org'
{% else %}
suffix = 'fedoraproject.org'
vpn_suffix = 'vpn.fedoraproject.org'
{% endif %}
{% endif %}
config = dict(
endpoints={
"odcs.odcs-backend01": [
"tcp://odcs-backend01.%s:30%0.2i" % (suffix, i)
for i in range(8)
],
},
)