michael-s-molina commented on code in PR #34763: URL: https://github.com/apache/superset/pull/34763#discussion_r2329978247
########## superset/config.py: ########## @@ -1328,6 +1328,13 @@ def allowed_schemas_for_csv_upload( # pylint: disable=unused-argument # Smaller values use less memory but may be slower for large files READ_CSV_CHUNK_SIZE = 1000 +# Maximum number of detailed errors to display in CSV upload error messages +# When there are more errors than this limit, the system will show the first +# CSV_UPLOAD_MAX_ERRORS_DISPLAYED errors with details and indicate how many +# additional errors exist (e.g., "and 5 more error(s)") +CSV_UPLOAD_MAX_ERRORS_DISPLAYED = 3 Review Comment: @luizotavio32 I think the number of max errors is based on UI real state and should be a static value to avoid adding another configuration option. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
