Add debug logging on signature verification failure (#26637)

This commit is contained in:
Claire 2023-08-29 10:29:07 +02:00 committed by GitHub
parent c536148396
commit e7472ecd2a

View file

@ -119,6 +119,8 @@ module SignatureVerification
private
def fail_with!(message, **options)
Rails.logger.warn { "Signature verification failed: #{message}" }
@signature_verification_failure_reason = { error: message }.merge(options)
@signed_request_actor = nil
end