You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How about use ActiveSupport::Notifications::Instrument to publish thread_pool_exhausted and unimplemented error?
Many Ruby developers are more familiar with the interface of ActiveSupport::Notifications::Instrument, and it'll make it easier to use with multiple listeners. Additionally, this approach allows us to simplify the implementation in these lines:
What? Why?
How about use
ActiveSupport::Notifications::Instrument
to publishthread_pool_exhausted
andunimplemented
error?Many Ruby developers are more familiar with the interface of ActiveSupport::Notifications::Instrument, and it'll make it easier to use with multiple listeners. Additionally, this approach allows us to simplify the implementation in these lines:
gruf/lib/gruf/server.rb
Lines 69 to 74 in c4c4d9e
Since we already have activesupport as a dependency, we can use it without adding any external dependencies.
gruf/gruf.gemspec
Line 60 in 7ce8f7a
The text was updated successfully, but these errors were encountered: