Fix FAS endpoints for fedmsg. There are 40 wsgi processes.

This commit is contained in:
Ralph Bean 2015-01-14 20:24:27 +00:00
parent 0ef154a47c
commit 706d8a1bba

View file

@ -41,16 +41,16 @@ config = dict(
# the usual 8 since there are so many mod_wsgi processes for it. # the usual 8 since there are so many mod_wsgi processes for it.
"fas.fas01": [ "fas.fas01": [
"tcp://fas01.%s:30%02i" % (suffix, i) "tcp://fas01.%s:30%02i" % (suffix, i)
for i in range(32) for i in range(40)
], ],
{% if env != 'staging' %} {% if env != 'staging' %}
"fas.fas02": [ "fas.fas02": [
"tcp://fas02.%s:30%02i" % (suffix, i) "tcp://fas02.%s:30%02i" % (suffix, i)
for i in range(32) for i in range(40)
], ],
"fas.fas03": [ "fas.fas03": [
"tcp://fas03.%s:30%02i" % (suffix, i) "tcp://fas03.%s:30%02i" % (suffix, i)
for i in range(32) for i in range(40)
], ],
{% endif %} {% endif %}
# fedoratagger needs 32 endpoints too, just like FAS. # fedoratagger needs 32 endpoints too, just like FAS.