Skip to content

Commit

Permalink
Merge branch 'main' into fix-delayed-job-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arielvalentin authored Oct 10, 2023
2 parents b3bf814 + aaac9bb commit 038db9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Gruf
module Interceptors
class Client < ::Gruf::Interceptors::ClientInterceptor
def call(request_context:)
return yield if instrumentation_config.blank?
return yield if instrumentation_config.empty?

service = request_context.method.split('/')[1]
method = request_context.method_name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Gruf
module Interceptors
class Server < ::Gruf::Interceptors::ServerInterceptor
def call
return yield if instrumentation_config.blank?
return yield if instrumentation_config.empty?

method = request.method_name

Expand Down

0 comments on commit 038db9d

Please sign in to comment.