File tree 2 files changed +1
-4
lines changed
lib/datadog/tracing/transport
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"DEFAULT" :
3
3
[
4
- " tests/test_span_events.py::Test_SpanEvents_WithAgentSupport::setup_v04_v07_default_format "
4
+ " tests/test_span_events.py::Test_SpanEvents_WithAgentSupport::test_v04_v07_default_format "
5
5
],
6
6
"AGENT_NOT_SUPPORTING_SPAN_EVENTS" :
7
7
[
Original file line number Diff line number Diff line change @@ -193,14 +193,11 @@ def change_api!(api_id)
193
193
# Queries the agent for native span events serialization support.
194
194
# This changes how the serialization of span events performed.
195
195
def native_events_supported?
196
- # print"Already cached: #{@native_events_supported}" if defined?(@native_events_supported)
197
196
return @native_events_supported if defined? ( @native_events_supported )
198
197
199
198
if ( res = Datadog . send ( :components ) . agent_info . fetch )
200
- # print"Caching: #{res.span_events == true}"
201
199
@native_events_supported = res . span_events == true
202
200
else
203
- # print"Failed to contact agent"
204
201
false
205
202
end
206
203
end
You can’t perform that action at this time.
0 commit comments