Remove more 'safe' entries from fedmsg endpoints to try and cut down
the noise of broken links in the system. Still not sure why some things are supposed to fire up 8 processes but only 2 show up
This commit is contained in:
parent
51c798faee
commit
a6d987bc9e
2 changed files with 0 additions and 50 deletions
|
@ -1,25 +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={
|
||||
"bodhi.bodhi-backend01": [
|
||||
"tcp://bodhi-backend01.%s:30%0.2i" % (suffix, i)
|
||||
for i in range(20)
|
||||
],
|
||||
}
|
||||
)
|
|
@ -29,31 +29,6 @@ config = dict(
|
|||
"tcp://value01.%s:3000" % suffix,
|
||||
],
|
||||
|
||||
# Askbot runs as 12 processes with 1 thread each.
|
||||
"askbot.ask01": [
|
||||
"tcp://ask01.%s:30%02i" % (suffix, i)
|
||||
for i in range(12)
|
||||
],
|
||||
|
||||
{% if env != 'staging' %}
|
||||
"askbot.ask02": [
|
||||
"tcp://ask02.%s:30%02i" % (suffix, i)
|
||||
for i in range(12)
|
||||
],
|
||||
{% endif %}
|
||||
|
||||
# The mirrormanager2 frontend runs as 2 processes with 1 thread each.
|
||||
"mirrormanager2.mm-frontend01": [
|
||||
"tcp://mm-frontend01.%s:30%02i" % (suffix, i)
|
||||
for i in range(2)
|
||||
],
|
||||
{% if env != 'staging' %}
|
||||
"mirrormanager2.mm-frontend02": [
|
||||
"tcp://mm-frontend02.%s:30%02i" % (suffix, i)
|
||||
for i in range(2)
|
||||
],
|
||||
{% endif %}
|
||||
|
||||
# koji is not listed here since it publishes to the fedmsg-relay
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue