@@ -74,7 +74,7 @@ class ConfigTest extends Specification {
7474 config. httpServerErrorStatuses == (500 .. 599 ). toSet()
7575 config. httpClientErrorStatuses == (400 .. 499 ). toSet()
7676 config. httpClientSplitByDomain == false
77- config. partialFlushMinSpans == 0
77+ config. partialFlushMinSpans == 1000
7878 config. runtimeContextFieldInjection == true
7979 config. propagationStylesToExtract. toList() == [Config.PropagationStyle . DATADOG ]
8080 config. propagationStylesToInject. toList() == [Config.PropagationStyle . DATADOG ]
@@ -172,7 +172,7 @@ class ConfigTest extends Specification {
172172 System . setProperty(PREFIX + HTTP_SERVER_ERROR_STATUSES , " 123-456,457,124-125,122" )
173173 System . setProperty(PREFIX + HTTP_CLIENT_ERROR_STATUSES , " 111" )
174174 System . setProperty(PREFIX + HTTP_CLIENT_HOST_SPLIT_BY_DOMAIN , " true" )
175- System . setProperty(PREFIX + PARTIAL_FLUSH_MIN_SPANS , " 15 " )
175+ System . setProperty(PREFIX + PARTIAL_FLUSH_MIN_SPANS , " 25 " )
176176 System . setProperty(PREFIX + RUNTIME_CONTEXT_FIELD_INJECTION , " false" )
177177 System . setProperty(PREFIX + PROPAGATION_STYLE_EXTRACT , " Datadog, B3" )
178178 System . setProperty(PREFIX + PROPAGATION_STYLE_INJECT , " B3, Datadog" )
@@ -201,7 +201,7 @@ class ConfigTest extends Specification {
201201 config. httpServerErrorStatuses == (122 .. 457 ). toSet()
202202 config. httpClientErrorStatuses == (111 .. 111 ). toSet()
203203 config. httpClientSplitByDomain == true
204- config. partialFlushMinSpans == 15
204+ config. partialFlushMinSpans == 25
205205 config. runtimeContextFieldInjection == false
206206 config. propagationStylesToExtract. toList() == [Config.PropagationStyle . DATADOG , Config.PropagationStyle . B3 ]
207207 config. propagationStylesToInject. toList() == [Config.PropagationStyle . B3 , Config.PropagationStyle . DATADOG ]
0 commit comments