You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this have implications for DeletedRecordEvent? Do we want to update patterns so it has similar default, predictable behavior?
Do we want more granular exception classes like InvalidRecordError that extend SkippedRecordEvent, such that we could raise those more meaningful, granular exceptions from code, but still have a single except SkippedRecordEvent: ... logic at the higher level to group skipping behavior for all those child Exception types?
The text was updated successfully, but these errors were encountered:
Also noting that if a field method wants to skip a record, but these more granular exceptions don't feel right, there is nothing wrong with directly raising a SkippedRecordEvent with a meaningful message.
@ghukill comment in PR #175
DeletedRecordEvent
? Do we want to update patterns so it has similar default, predictable behavior?InvalidRecordError
that extendSkippedRecordEvent
, such that we could raise those more meaningful, granular exceptions from code, but still have a singleexcept SkippedRecordEvent: ...
logic at the higher level to group skipping behavior for all those child Exception types?The text was updated successfully, but these errors were encountered: