fix(tonic): Remove Sync requirement for streams (#804)
This commit is contained in:
@@ -9,7 +9,7 @@ pub mod pb {
|
||||
tonic::include_proto!("test");
|
||||
}
|
||||
|
||||
type BoxStream<T> = Pin<Box<dyn Stream<Item = Result<T, Status>> + Send + Sync + 'static>>;
|
||||
type BoxStream<T> = Pin<Box<dyn Stream<Item = Result<T, Status>> + Send + 'static>>;
|
||||
|
||||
pub struct Svc;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user