Sometimes it is convenient to "keep going" when importing lots of content, ignoring tracebacks and other failures that may occur with certain content.
Is there any generic mechanism in Transmogrifier to make this easier? The only approaches I can see are:
- Use only custom blueprints that try/except where appropriate.
- Use a wrapper to execute the pipeline that changes the source blueprint input to be one-after-the-failure each time.
Neither of these appear particularly convenient or desirable, hence my question.
you only need to write one blueprint which will handle and ignore all "tracebacks" you might want. be sure to put it right after "source" blueprint and yield in try/except block.
...