aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/web_config.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-09-30 15:31:03 -0700
committerBryan Newbold <bnewbold@robocracy.org>2021-09-30 15:31:38 -0700
commit519c7e77cf3a54b9620adef07fedac9b37a5f9f2 (patch)
treec5b120c48ed5aaff087984078341cffbae1b30b8 /python/fatcat_web/web_config.py
parentb5bf0697b3d3b074fd9a6a8836ac114fbd8c1df1 (diff)
downloadfatcat-519c7e77cf3a54b9620adef07fedac9b37a5f9f2.tar.gz
fatcat-519c7e77cf3a54b9620adef07fedac9b37a5f9f2.zip
default ingest request topic now '-daily'; configurable for ingest_tool.py
Diffstat (limited to 'python/fatcat_web/web_config.py')
-rw-r--r--python/fatcat_web/web_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/web_config.py b/python/fatcat_web/web_config.py
index 98b89aea..f48a7b60 100644
--- a/python/fatcat_web/web_config.py
+++ b/python/fatcat_web/web_config.py
@@ -34,7 +34,7 @@ class Config(object):
# for save-paper-now. set to None if not configured, so we don't display forms/links
KAFKA_PIXY_ENDPOINT = os.environ.get("KAFKA_PIXY_ENDPOINT", default=None) or None
- KAFKA_SAVEPAPERNOW_TOPIC = os.environ.get("KAFKA_SAVEPAPERNOW_TOPIC", default="sandcrawler-dev.ingest-file-requests")
+ KAFKA_SAVEPAPERNOW_TOPIC = os.environ.get("KAFKA_SAVEPAPERNOW_TOPIC", default="sandcrawler-dev.ingest-file-requests-priority")
# for flask things, like session cookies
FLASK_SECRET_KEY = os.environ.get("FLASK_SECRET_KEY", default=None)