Remove production hack to prevent equity import batch execution

This commit is contained in:
Lance Edgar 2023-09-17 13:49:36 -05:00
parent 7dc09d0a2e
commit c513a91678

View file

@ -99,9 +99,6 @@ class CoreEquityImportBatchHandler(BatchHandler):
row.STATUS_ALREADY_IN_CORE)]
def execute(self, batch, progress=None, **kwargs):
if self.config.production():
raise NotImplementedError("TODO: not yet implemented for production")
rows = self.get_effective_rows(batch)
self.export_payments_to_corepos(rows, progress=progress)
return True