File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
dd-trace-core/src/test/groovy/datadog/trace/common/writer/ddagent Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import org.msgpack.core.MessageUnpacker
2121import java.nio.ByteBuffer
2222import java.nio.channels.WritableByteChannel
2323
24- import static datadog.trace.api.config.GeneralConfig.EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED
2524import static datadog.trace.bootstrap.instrumentation.api.InstrumentationTags.DD_MEASURED
2625import static datadog.trace.common.writer.TraceGenerator.generateRandomTraces
2726import static org.junit.jupiter.api.Assertions.assertEquals
@@ -180,8 +179,6 @@ class TraceMapperV04PayloadTest extends DDSpecification {
180179
181180 void ' test process tags serialization' () {
182181 setup :
183- injectSysConfig(EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED , " true" )
184- ProcessTags . reset()
185182 assertNotNull (ProcessTags . tagsForSerialization)
186183 def spans = (1 .. 2 ). collect {
187184 new TraceGenerator.PojoSpan (
@@ -214,8 +211,6 @@ class TraceMapperV04PayloadTest extends DDSpecification {
214211
215212 then :
216213 verifier. verifyTracesConsumed()
217- cleanup :
218- ProcessTags . empty()
219214 }
220215
221216 private static final class PayloadVerifier implements ByteBufferConsumer , WritableByteChannel {
Original file line number Diff line number Diff line change @@ -154,8 +154,6 @@ class TraceMapperV05PayloadTest extends DDSpecification {
154154
155155 void ' test process tags serialization' () {
156156 setup :
157- injectSysConfig(EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED , " true" )
158- ProcessTags . reset()
159157 assertNotNull (ProcessTags . tagsForSerialization)
160158 def spans = (1 .. 2 ). collect {
161159 new TraceGenerator.PojoSpan (
@@ -188,8 +186,6 @@ class TraceMapperV05PayloadTest extends DDSpecification {
188186
189187 then :
190188 verifier. verifyTracesConsumed()
191- cleanup :
192- ProcessTags . empty()
193189 }
194190
195191 private static final class PayloadVerifier implements ByteBufferConsumer , WritableByteChannel {
You can’t perform that action at this time.
0 commit comments