Kirill Usanov
Kirill Usanov
I debuged my application and came to the conclusion that the problem is in the Sorcery gem. Updated your sample app to demonstrate it. https://github.com/Exterm1nate/doorkeeper-openid_connect-sample
It doesn't matter what class is provided. The same issue for any other model, without `Oauth` namespace. ```ruby Doorkeeper.configure do access_grant_class "ApplicationRecord" end ```
Think we can close this.
A good way to solve this is to define another method with same functionality (something like `redirect_to_before_login_path`), add a warning message to the original method that it is deprecated and...
Thank you for your answer! idk does this behaviour should be changed, maybe it is worth just mentioning in docs or something like that. It can save some time for...
Seems like problem is on Rails side. Delegated to Rails project (https://github.com/rails/rails/issues/45939), so think we can close this issue.
This solution appears to work, but it has a noticeable disadvantage: tests will take longer if we wait for the last `run_stream` cycle to complete. It would be better if...
This code emulates my test suite: ```ruby RSpec.describe "stream processor" do context "with stream" do subject(:call_method) do stream # Wait for SSE client preparations sleep 0.1 end let!(:obj) { instance_double("object",...
I added `SSE::Client#kill` method, that closes the client and kills the worker thread. `SSE::Client#close_and_wait` looks useful, so I left it untouched. Review please.