File tree 2 files changed +5
-2
lines changed
iceoryx2-cli/iox2-service/src
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ pub struct DiscoveryOptions {
62
62
#[ clap(
63
63
short,
64
64
long,
65
- default_value = "1000 " ,
65
+ default_value = "100 " ,
66
66
help = "Update rate in milliseconds"
67
67
) ]
68
68
pub rate : u64 ,
Original file line number Diff line number Diff line change @@ -144,7 +144,10 @@ pub fn discovery(
144
144
DiscoveryService :: < ipc:: Service > :: create ( & monitor_config, & Config :: global_config ( ) )
145
145
. map_err ( |e| anyhow:: anyhow!( "failed to create service monitor: {:?}" , e) ) ?;
146
146
147
- println ! ( "=== Service Discovery Service Started ===" ) ;
147
+ println ! (
148
+ "=== Service Discovery Service Started (rate: {}ms) ===" ,
149
+ rate
150
+ ) ;
148
151
println ! (
149
152
"{}" ,
150
153
format. as_string( & SerializableDiscoveryConfig :: from_config( & monitor_config) ) ?
You can’t perform that action at this time.
0 commit comments