mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1689 from murgatroid99/grpc-js_failed_start_details
grpc-js: Add more details to 'Failed to start HTTP/2 stream' error
This commit is contained in:
commit
7436983bbb
|
@ -362,7 +362,7 @@ export class ChannelImplementation implements Channel {
|
||||||
);
|
);
|
||||||
callStream.cancelWithStatus(
|
callStream.cancelWithStatus(
|
||||||
Status.INTERNAL,
|
Status.INTERNAL,
|
||||||
'Failed to start HTTP/2 stream'
|
`Failed to start HTTP/2 stream with error: ${(error as Error).message}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue