mirror of https://github.com/grpc/grpc-node.git
Copy outgoing metadata to avoid modifying it
This commit is contained in:
parent
4e7f4dff17
commit
1b2c558e53
|
@ -277,7 +277,7 @@ export class ChannelImplementation implements Channel {
|
||||||
}
|
}
|
||||||
|
|
||||||
_startCallStream(stream: Http2CallStream, metadata: Metadata) {
|
_startCallStream(stream: Http2CallStream, metadata: Metadata) {
|
||||||
this.tryPick(stream, metadata);
|
this.tryPick(stream, metadata.clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
|
|
Loading…
Reference in New Issue