Skip to content

Commit

Permalink
Merge pull request #1689 from murgatroid99/grpc-js_failed_start_details
Browse files Browse the repository at this point in the history
grpc-js: Add more details to 'Failed to start HTTP/2 stream' error
  • Loading branch information
murgatroid99 committed Feb 12, 2021
2 parents b5a8ea1 + 097d63b commit 7436983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grpc-js/src/channel.ts
Expand Up @@ -362,7 +362,7 @@ export class ChannelImplementation implements Channel {
);
callStream.cancelWithStatus(
Status.INTERNAL,
'Failed to start HTTP/2 stream'
`Failed to start HTTP/2 stream with error: ${(error as Error).message}`
);
}
}
Expand Down

0 comments on commit 7436983

Please sign in to comment.