diff options
author | Bryan Newbold <bnewbold@archive.org> | 2019-11-13 17:46:24 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2019-11-13 17:46:24 -0800 |
commit | bbb8c03f9059d8c498d6a2f5933703c145931aeb (patch) | |
tree | a3f7722fdb95e00c1b450723b2f7d0a6179f4f49 | |
parent | 0b62cec8ee674793d890ab4cc5730933b5278b2f (diff) | |
download | sandcrawler-bbb8c03f9059d8c498d6a2f5933703c145931aeb.tar.gz sandcrawler-bbb8c03f9059d8c498d6a2f5933703c145931aeb.zip |
correct ingest-file consumer group
-rwxr-xr-x | python/sandcrawler_worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/sandcrawler_worker.py b/python/sandcrawler_worker.py index 1f02eea..27d6ebd 100755 --- a/python/sandcrawler_worker.py +++ b/python/sandcrawler_worker.py @@ -38,7 +38,7 @@ def run_ingest_file(args): grobid_client = GrobidClient(host_url=args.grobid_host) worker = IngestFileWorker(grobid_client=grobid_client, sink=sink) pusher = KafkaJsonPusher(worker=worker, kafka_hosts=args.kafka_hosts, - consume_topic=consume_topic, group="grobid-extract") + consume_topic=consume_topic, group="ingest-file") pusher.run() def main(): |