File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ impl AwClient {
80
80
proxy_method ! ( get_event_count, i64 , bucketname: & str ) ;
81
81
proxy_method ! ( get_info, aw_models:: Info , ) ;
82
82
83
- pub fn wait_for_server ( & self ) -> Result < ( ) , Box < dyn Error > > {
84
- self . client . wait_for_server ( )
83
+ pub fn wait_for_start ( & self ) -> Result < ( ) , Box < dyn Error > > {
84
+ self . client . wait_for_start ( )
85
85
}
86
86
}
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ impl AwClient {
225
225
}
226
226
227
227
// TODO: make async
228
- pub fn wait_for_server ( & self ) -> Result < ( ) , Box < dyn Error > > {
228
+ pub fn wait_for_start ( & self ) -> Result < ( ) , Box < dyn Error > > {
229
229
let socket_addrs = self . baseurl . socket_addrs ( || None ) ?;
230
230
let socket_addr = socket_addrs. first ( )
231
231
. ok_or ( "Unable to resolve baseurl into socket address" ) ?;
You can’t perform that action at this time.
0 commit comments