@@ -858,14 +858,12 @@ func ensureTracesMatch(t *testing.T, urlPath string) {
858858 traces := tq .FindBySpan (jaeger.Tag {Key : "url.path" , Type : "string" , Value : "/" + urlPath })
859859 require .LessOrEqual (t , 5 , len (traces ))
860860 multipleTraces = traces
861- }, test .Interval (500 * time .Millisecond ))
862861
863- // Ensure all 5 traces have proper full chain Java -> Node
864- for _ , trace := range multipleTraces {
865- var traceID string
862+ // Ensure all 5 traces have proper full chain Java -> Node
863+ for _ , trace := range multipleTraces {
864+ var traceID string
866865
867- // Check the information of the java parent span with retry
868- test .Eventually (t , testTimeout , func (t require.TestingT ) {
866+ // Check the information of the java parent span with retry
869867 res := trace .FindByOperationName ("GET /" + urlPath , "server" )
870868 require .Len (t , res , 1 )
871869 parent := res [0 ]
@@ -903,8 +901,8 @@ func ensureTracesMatch(t *testing.T, urlPath string) {
903901 jaeger.Tag {Key : "span.kind" , Type : "string" , Value : "server" },
904902 )
905903 assert .Empty (t , sd , sd .String ())
906- }, test . Interval ( 30 * time . Millisecond ))
907- }
904+ }
905+ }, test . Interval ( 500 * time . Millisecond ))
908906}
909907
910908func testNestedHTTPSTracesKProbes (t * testing.T ) {
0 commit comments