-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Import stales when error in one import data record #232
Comments
I could reproduce the problem, a possible solution could be: We could catch the exception either directly in We could introduce a flag "continue on error" which is set by default. If the flag is set, we catch and log the exception, after that continue with the next row. If it is not set, we catch and log the exception, after that stop import. This could be important if you have imports or rows that are depended of each other (e.g. parent child relations). |
See #263 (comment) for more information on replicating the issue. |
Implement:
Follow up feature: |
* [Bug] Import stales when error in one import data record #232 * Apply php-cs-fixer changes --------- Co-authored-by: mcop1 <[email protected]>
Expected behavior
To be discussed
Actual behavior
For example, I get following error in the logs:
no messages in application log, but import is stuck as tmp-store worker entry is not cleared properly.
Steps to reproduce
import CSV/xls with empty rows
The text was updated successfully, but these errors were encountered: