Conversation
ActivityParticipations#index 500s when Organization#icalendar_auth_token cannot be decrypted, because the calendar sidebar presence check reads the encrypted attribute. Treat decryption failures as a missing token so that page still renders. Co-authored-by: Thibaud Guillaume-Gentil <thibaud@thibaud.gg>
Write a corrupted encrypted payload via SQL so Active Record does not re-encrypt it. That reproduces the production Decryption error on read. Co-authored-by: Thibaud Guillaume-Gentil <thibaud@thibaud.gg>
thibaudgg
marked this pull request as ready for review
September 14, 2026 12:50
Member
Author
|
I fixed the encrypted keys directly. |
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.
Problem
AppSignal incident #440 (
ActionView::Template::ErrorwrappingActiveRecord::Encryption::Errors::Decryption) takes downActivityParticipationsController#index(GET /activity_participations).The calendar sidebar is gated with
Current.org.icalendar_auth_token?. That predicate decryptsOrganization#icalendar_auth_token. For tenants whose ciphertext is corrupt or encrypted under the wrong key (latest sample:demo-en), ActiveAdmin sidebar rendering raises and the whole index returns 500.Fix
Rescue
ActiveRecord::Encryption::Errors::DecryptioninOrganization#icalendar_auth_tokenand treat it as a missing token (nil/icalendar_auth_token?false).Chose a reader-level rescue over a sidebar-only guard so every presence check and token consumer fails closed the same way.
Tests
nil/ not presentTests write a corrupted encrypted payload with raw SQL so Active Record does not re-encrypt it.
Does not close or comment on the AppSignal incident.