We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From @jeremyevans:
FYI, Roda CI now failing on TruffleRuby-head. Looks like the cause is TruffleRuby is now advertising Ruby 3.2.2 without implementing Exception#detailed_message. https://github.com/jeremyevans/roda/actions/runs/6149810627/job/16686430579#step:4:16
The text was updated successfully, but these errors were encountered:
Due to https://github.com/jeremyevans/roda/blob/7c8d3190b52a060d0e80ef7b977f41f48147780c/lib/roda/plugins/exception_page.rb#L414-L417. That could use Exception.method_defined?(:detailed_message) instead to be more robust.
Exception.method_defined?(:detailed_message)
But of course we should also implement detailed_message (likely fairly easy)
detailed_message
Sorry, something went wrong.
Use feature detection to find out if detailed_message is available
efaf97b
* See oracle/truffleruby#3257
PR to use feature detection in Roda so it works for 23.1: jeremyevans/roda#333
Fixed by b4a05b5
andrykonchin
No branches or pull requests
From @jeremyevans:
The text was updated successfully, but these errors were encountered: