Skip to content

Commit

Permalink
type of sa seems to be bool
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarres-mdsol committed Nov 21, 2015
1 parent 9b380c0 commit a49ac66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/zipkin-tracer/faraday/zipkin-tracer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def call(env)
# annotate with method (GET/POST/etc.) and uri path
::Trace.set_rpc_name(env[:method].to_s.downcase)
record(::Trace::BinaryAnnotation.new("http.uri", url.path, "STRING", local_endpoint))
record(::Trace::BinaryAnnotation.new("sa", "1", "BYTE", remote_endpoint))
record(::Trace::BinaryAnnotation.new("sa", "1", "BOOL", remote_endpoint))
record(::Trace::Annotation.new(::Trace::Annotation::CLIENT_SEND, local_endpoint))
response = @app.call(env).on_complete do |renv|
# record HTTP status code on response
Expand Down

0 comments on commit a49ac66

Please sign in to comment.