Skip to content

Commit

Permalink
fix(tonic): fix extensions disappearing during streaming requests
Browse files Browse the repository at this point in the history
Fixes #770
  • Loading branch information
mtoader committed Sep 30, 2021
1 parent ddab65e commit 5c1bb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tonic/src/request.rs
Expand Up @@ -195,7 +195,7 @@ impl<T> Request<T> {
Request {
metadata: self.metadata,
message,
extensions: Extensions::new(),
extensions: self.extensions,
}
}

Expand Down

0 comments on commit 5c1bb90

Please sign in to comment.