File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ const DEFAULT_SOCK_ADDR: &str = "/var/run/numaflow/serving.sock";
18
18
const DEFAULT_SERVER_INFO_FILE : & str = "/var/run/numaflow/serving-server-info" ;
19
19
20
20
/// ServingStore trait for implementing user defined stores. This Store has to be
21
- /// a shared Store between the Source and the Sink vertices. [put] happens in Sink
22
- /// while the [get] gets called at the Source .
21
+ /// a shared Store between the Source and the Sink vertices. [ServingStore:: put] happens in Sink
22
+ /// while the [ServingService:: get] gets called at the serving layer .
23
23
///
24
24
/// Types implementing this trait can be passed as user-defined store handle.
25
25
#[ tonic:: async_trait]
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ pub struct Response {
131
131
pub id : String ,
132
132
/// response_type indicates the type of the response.
133
133
pub response_type : ResponseType ,
134
- /// err string is used to describe the error if [`Response::success `] was `false` .
134
+ /// err string is used to describe the error if [`ResponseType::Failure `] is set .
135
135
pub err : Option < String > ,
136
136
pub serve_response : Option < Vec < u8 > > ,
137
137
}
@@ -259,7 +259,6 @@ where
259
259
grpc_resp_tx. clone ( ) ,
260
260
)
261
261
. await ?;
262
- println ! ( "Time taken for batch: {:?}" , start. elapsed( ) . as_micros( ) ) ;
263
262
}
264
263
Ok ( ( ) )
265
264
}
You can’t perform that action at this time.
0 commit comments