diff --git a/processes/ingest/publisher_backlist.py b/processes/ingest/publisher_backlist.py index 7954af1bc0..199fc6e1c2 100644 --- a/processes/ingest/publisher_backlist.py +++ b/processes/ingest/publisher_backlist.py @@ -33,7 +33,6 @@ def runProcess(self): else: logger.warning(f'Unknown Publisher Backlist ingestion process type {self.process}') return - raise Exception for record in records: self.addDCDWToUpdateList(record) diff --git a/services/sources/publisher_backlist_service.py b/services/sources/publisher_backlist_service.py index 5ba347c823..523bb5e343 100644 --- a/services/sources/publisher_backlist_service.py +++ b/services/sources/publisher_backlist_service.py @@ -96,4 +96,5 @@ def get_records_array(self, pub_backlist_records_response_json = pub_backlist_records_response.json() array_json.append(pub_backlist_records_response_json) + print(len(array_json)) return array_json