File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,6 @@ impl EventAggregator {
156
156
drop ( channel_recorder) ;
157
157
158
158
if aggr_throttle == 0 {
159
- println ! ( "in store" ) ;
160
159
store (
161
160
& app. pool ,
162
161
& channel_id,
Original file line number Diff line number Diff line change @@ -186,9 +186,8 @@ pub async fn insert_events<A: Adapter + 'static>(
186
186
187
187
let into_body = req. into_body ( ) ;
188
188
let body = hyper:: body:: to_bytes ( into_body) . await ?;
189
- println ! ( "deserializing request body" ) ;
190
189
let request_body = serde_json:: from_slice :: < HashMap < String , Vec < Event > > > ( & body) ?;
191
- println ! ( "deserializing request body 2" ) ;
190
+
192
191
let events = request_body
193
192
. get ( "events" )
194
193
. ok_or_else ( || ResponseError :: BadRequest ( "invalid request" . to_string ( ) ) ) ?;
You can’t perform that action at this time.
0 commit comments