File tree 6 files changed +5
-17
lines changed
6 files changed +5
-17
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,7 @@ pub(crate) mod tests {
68
68
69
69
#[ async_std:: test]
70
70
async fn test_simple_process ( ) {
71
- let mut graph = GraphBuilder :: for_testing ( )
72
- . with_telemetry_metric_features ( false )
73
- . build ( ( ) ) ;
71
+ let mut graph = GraphBuilder :: for_testing ( ) . build ( ( ) ) ;
74
72
75
73
let ( numbers_tx, test_numbers_rx) = graph. channel_builder ( )
76
74
. with_capacity ( 50000 )
Original file line number Diff line number Diff line change @@ -64,9 +64,7 @@ pub(crate) mod tests {
64
64
65
65
#[ async_std:: test]
66
66
async fn test_simple_process ( ) {
67
- let mut graph = GraphBuilder :: for_testing ( )
68
- . with_telemetry_metric_features ( false )
69
- . build ( ( ) ) ;
67
+ let mut graph = GraphBuilder :: for_testing ( ) . build ( ( ) ) ;
70
68
71
69
let ( numbers_tx, test_numbers_rx) = graph. channel_builder ( )
72
70
. with_capacity ( 50000 ) . build ( ) ;
Original file line number Diff line number Diff line change @@ -61,9 +61,7 @@ pub(crate) mod actor_tests {
61
61
62
62
#[ async_std:: test]
63
63
pub ( crate ) async fn test_simple_process ( ) {
64
- let mut graph = GraphBuilder :: for_testing ( )
65
- . with_telemetry_metric_features ( false )
66
- . build ( ( ) ) ;
64
+ let mut graph = GraphBuilder :: for_testing ( ) . build ( ( ) ) ;
67
65
68
66
let ( ticks_tx_out, ticks_rx_out) = graph. channel_builder ( )
69
67
. with_capacity ( BUFFER_SIZE )
Original file line number Diff line number Diff line change @@ -279,9 +279,7 @@ pub(crate) mod aeron_media_driver_tests {
279
279
return ;
280
280
}
281
281
282
- let mut graph = GraphBuilder :: for_testing ( )
283
- . with_telemetry_metric_features ( false )
284
- . build ( ( ) ) ;
282
+ let mut graph = GraphBuilder :: for_testing ( ) . build ( ( ) ) ;
285
283
286
284
if graph. aeron_md ( ) . is_none ( ) {
287
285
info ! ( "aeron test skipped, no media driver present" ) ;
Original file line number Diff line number Diff line change @@ -328,9 +328,7 @@ pub(crate) mod aeron_media_driver_tests {
328
328
unsafe {
329
329
env:: set_var ( "TELEMETRY_SERVER_PORT" , "9301" ) ;
330
330
}
331
- let mut graph = GraphBuilder :: for_testing ( )
332
- . with_telemetry_metric_features ( false )
333
- . build ( ( ) ) ;
331
+ let mut graph = GraphBuilder :: for_testing ( ) . build ( ( ) ) ;
334
332
335
333
if graph. aeron_md ( ) . is_none ( ) {
336
334
info ! ( "aeron test skipped, no media driver present" ) ;
Original file line number Diff line number Diff line change @@ -616,8 +616,6 @@ mod http_telemetry_tests {
616
616
// Step 1: Set up a minimal graph
617
617
let mut graph = GraphBuilder :: for_testing ( )
618
618
. with_telemtry_production_rate_ms ( 500 )
619
- // turn off because I am creating the sever here for testing
620
- . with_telemetry_metric_features ( false )
621
619
. build ( ( ) ) ;
622
620
623
621
// Step 2: Start the metrics_server actor
You can’t perform that action at this time.
0 commit comments