class SignalFx::Tracing::HttpSenderWithFlag
Public Instance Methods
send_spans(spans)
click to toggle source
Calls superclass method
# File lib/signalfx/tracing/http_sender.rb, line 13 def send_spans(spans) Thread.current.thread_variable_set(:http_sender_thread, true) super ensure Thread.current.thread_variable_set(:http_sender_thread, nil) end