Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👌 Catch all
Exception
s during submission loop
Instead of only catching `ValueError`, `TypeError` and `AttributeError`, catch a generic `Exception` and log the failure is the submission failed for a certain set of extras. Although this is generally not considered good practise, catching a generic `Exception` here makes sense since we're trying to report any kind of failure, even potentially custom subclasses of `Exception`. Now the `submit_new_batch` method will no longer break because of one faulty submission.
- Loading branch information