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:
Michael Lumish 2021-02-12 15:07:54 -08:00 committed by GitHub
commit 7436983bbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}`
);
}
}