-
Notifications
You must be signed in to change notification settings - Fork 25
Refactor ERC721 Ethscriptions Collection Management #135
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -176,7 +176,7 @@ module Clockwork | |||||
| # Don't sleep here - the loop's sleep at line 192 will handle it | ||||||
| rescue => e | ||||||
| Rails.logger.error "Import error: #{e.class} - #{e.message}" | ||||||
| Rails.logger.error e.backtrace.first(20).join("\n") | ||||||
| Rails.logger.error e.backtrace.join("\n") | ||||||
|
||||||
| Rails.logger.error e.backtrace.join("\n") | |
| Rails.logger.error e.backtrace.first(50).join("\n") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented-out validation code for data URI and JSON payload checking should be removed. If this validation is no longer needed, delete it; if it's still being evaluated, add a TODO comment explaining why it's temporarily disabled.