Log errors when versions can't be created#809
Merged
jaredbeck merged 3 commits intopaper-trail-gem:masterfrom May 18, 2016
md5:log-errors
Merged
Log errors when versions can't be created#809jaredbeck merged 3 commits intopaper-trail-gem:masterfrom md5:log-errors
jaredbeck merged 3 commits intopaper-trail-gem:masterfrom
md5:log-errors
Conversation
Member
Just bump up the number in rubocop_todo.yml .. it's a fight for another day :) |
| unless log_version_errors(version, :update) | ||
| update_transaction_id(version) | ||
| save_associations(version) | ||
| end |
Member
There was a problem hiding this comment.
I find this conditional hard to read. I'd prefer:
if version.errors.any?
log_version_errors(version, :update)
else
update_transaction_id(version)
# etc.If rubocop complains about method complexity, just bump up the numbers; it's a fight for another day.
Contributor
Author
There was a problem hiding this comment.
That's what I had originally until RuboCop complained about AbcSize. I've changed it back, though subsequent edits seem to have removed the need to bump AbcSize.
Contributor
Author
|
I've refactored and bumped the |
Member
|
Thanks Mike! |
Contributor
Author
|
🤘 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As discussed in #807, this PR updates
record_updateandrecord_destroyto log a warning listing all validation errors when aVersioninstance cannot be saved. It does not updaterecord_createsince that callsVersion.create!instead ofVersion.createand should raise an error for any validation failures.Due to Rubocop complaining, I have also slightly refactored
has_paper_trail.rbto fix some of the complaints. There is still a complaint about theInstanceMethodsmodule being too many lines, but I didn't see any easy way to reduce the line count of these changes without going too far off topic and into the weeds.