diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-26 18:17:48 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-26 18:17:48 -0700 |
commit | 6b13e8796823fff74e7b62a915971da05844098f (patch) | |
tree | d8138175df165549cb1951cd03dcbdd05386f3b4 | |
parent | 4c0e3f9c02692cd2cab0657d7fbcd1861a586076 (diff) | |
download | sandcrawler-6b13e8796823fff74e7b62a915971da05844098f.tar.gz sandcrawler-6b13e8796823fff74e7b62a915971da05844098f.zip |
fileset ingest: fix table name typo (via mypy)
-rw-r--r-- | python/sandcrawler/ingest_fileset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/sandcrawler/ingest_fileset.py b/python/sandcrawler/ingest_fileset.py index 172e1d7..e049b70 100644 --- a/python/sandcrawler/ingest_fileset.py +++ b/python/sandcrawler/ingest_fileset.py @@ -49,7 +49,7 @@ class IngestFilesetWorker(IngestFileWorker): """ if not self.try_existing_ingest: return None - existing = self.pgrest_client.get_ingest_fileset_result(ingest_type, base_url) + existing = self.pgrest_client.get_ingest_fileset_platform(ingest_type, base_url) # TODO: filter on more flags? if existing and existing['hit'] is True: return existing |