Compiles and local test get_binned_binary runs through with cache ignore

This commit is contained in:
Dominik Werder
2021-05-26 15:59:58 +02:00
parent e312db7ac2
commit 11d1df238d
9 changed files with 82 additions and 79 deletions

View File

@@ -61,7 +61,10 @@ async fn events_conn_handler_inner(
make_frame::<Result<StreamItem<RangeCompletableItem<MinMaxAvgScalarEventBatch>>, Error>>(&Err(ce.err))?;
match ce.netout.write_all(&buf).await {
Ok(_) => (),
Err(e) => return Err(e)?,
Err(e) => {
error!("events_conn_handler_inner sees: {:?}", e);
return Err(e)?;
}
}
}
}