Use only one thread at a time to feed stuff to PDC.
This commit is contained in:
parent
6b3e0553bf
commit
97b1e0e3df
1 changed files with 5 additions and 0 deletions
|
@ -4,6 +4,11 @@ config = {
|
||||||
# Should we turn on the realtime updater?
|
# Should we turn on the realtime updater?
|
||||||
'pdcupdater.enabled': True,
|
'pdcupdater.enabled': True,
|
||||||
|
|
||||||
|
# Use only one thread at a time to handle messages. If we have more than
|
||||||
|
# one, then we can end up POSTing multiple enormous JSON blobs to the PDC
|
||||||
|
# web frontend, and we'll send it into OOM death. One at a time, people..
|
||||||
|
"moksha.workers_per_consumer": 1,
|
||||||
|
|
||||||
# Credentials to talk to PDC
|
# Credentials to talk to PDC
|
||||||
'pdcupdater.pdc': {
|
'pdcupdater.pdc': {
|
||||||
{% if env == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue