Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions geonode/upload/handlers/common/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -1440,10 +1440,11 @@ def _commit_upsert(self, model_obj, OriginalResource, upsert_key, layer_iterator
)
chunk_index += 1
except Exception as e:
msg = f"Error occurred during feature save in Batch {chunk_index} with error: {str(e)}"
logger.exception(f"Error occurred during feature save in Batch {chunk_index} ({str(e)})")
msg = f"Error occurred during feature save in Batch {chunk_index}"
if exec_obj and layers:
self._create_error_log(exec_obj, layers, [{"error": msg}])
raise UpsertException(msg)
raise UpsertException("An internal error occurred while processing the upsert operation.")
Comment thread
giohappy marked this conversation as resolved.

return valid_create, valid_update

Expand Down
Loading