diff options
-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(): |