File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
opentelemetry-sdk/src/trace Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -1095,7 +1095,7 @@ mod tests {
10951095 processor. on_end ( span) ;
10961096 }
10971097
1098- tokio:: time:: sleep ( Duration :: from_millis ( 100 ) ) . await ;
1098+ tokio:: time:: sleep ( Duration :: from_millis ( 200 ) ) . await ;
10991099
11001100 let exported_spans = exporter_shared. lock ( ) . unwrap ( ) ;
11011101 assert_eq ! ( exported_spans. len( ) , 4 ) ;
Original file line number Diff line number Diff line change @@ -19,18 +19,25 @@ if [ -d "$TEST_DIR" ]; then
1919 echo Integration Tests: Reqwest Client
2020 echo # ###
2121 echo
22- cargo test --no-default-features --features " reqwest-client" ," internal-logs"
22+ # TODO: reqwest client is not supported with thread based processor and reader. Enable this test once it is supported.
23+ # cargo test --no-default-features --features "reqwest-client","internal-logs"
2324
24- # TODO - Uncomment the following lines once the reqwest-blocking-client feature is working.
25- # cargo test --no-default-features --features "reqwest-blocking-client"
25+ # Run tests with the reqwest-client feature
26+ echo
27+ echo # ###
28+ echo Integration Tests: Reqwest Blocking Client
29+ echo # ###
30+ echo
31+ cargo test --no-default-features --features " reqwest-blocking-client"
2632
2733 # Run tests with the hyper-client feature
2834 echo
2935 echo # ###
3036 echo Integration Tests: Hyper Client
3137 echo # ###
3238 echo
33- cargo test --no-default-features --features " hyper-client" ," internal-logs"
39+ # TODO: reqwest client is not supported with thread based processor and reader. Enable this test once it is supported.
40+ # cargo test --no-default-features --features "hyper-client","internal-logs"
3441else
3542 echo " Directory $TEST_DIR does not exist. Skipping tests."
3643 exit 1
You can’t perform that action at this time.
0 commit comments