File tree 2 files changed +9
-10
lines changed
volo-thrift/src/codec/default
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,6 @@ impl Status {
169
169
}
170
170
171
171
/// Create a new [`Status`] with the associated code and message.
172
-
173
172
pub fn new ( code : Code , message : impl Into < String > ) -> Self {
174
173
Self {
175
174
code,
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ impl MakeThriftCodec {
26
26
}
27
27
}
28
28
29
- /// Whether to use thrift multiplex protocol.
30
- ///
31
- /// When the multiplexed protocol is used, the name contains the service name,
32
- /// a colon : and the method name. The multiplexed protocol is not compatible
33
- /// with other protocols.
34
- ///
35
- /// Spec: <https://github.com/apache/thrift/blob/master/doc/specs/thrift-rpc.md>
36
- ///
37
- /// This is unimplemented yet.
29
+ // // / Whether to use thrift multiplex protocol.
30
+ // // /
31
+ // // / When the multiplexed protocol is used, the name contains the service name,
32
+ // // / a colon : and the method name. The multiplexed protocol is not compatible
33
+ // // / with other protocols.
34
+ // // /
35
+ // // / Spec: <https://github.com/apache/thrift/blob/master/doc/specs/thrift-rpc.md>
36
+ // // /
37
+ // // / This is unimplemented yet.
38
38
// pub fn with_multiplex(mut self, multiplex: bool) -> Self {
39
39
// self.multiplex = multiplex;
40
40
// self
You can’t perform that action at this time.
0 commit comments