Conversation
When a solution's git_important_files_hash differs from the exercise's but the actual git diff produces no interesting file changes, auto-sync the solution to the latest exercise version instead of returning a 400 error and reporting to Sentry. The frontend now gracefully handles the empty files case with an auto-updated notice. Closes #8456 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
dem4ron
approved these changes
Feb 11, 2026
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.
Closes #8456
Summary
RuntimeError: No files were found during solution diff)diff.files[0].relativePathContext
The
out_of_date?check (hash-based) and the actual git diff (content-based) can disagree — the hash changed but no interesting files actually changed. When this happens, the best action is to silently sync the solution since there are no meaningful changes for the user to review.Test plan
bundle exec rails test test/controllers/api/solutions_controller_test.rb)yarn test)🤖 Generated with Claude Code