Skip to content

Commit

Permalink
Merge pull request #85 from PhilippeMorier/fix-handler-for-bidi-stream
Browse files Browse the repository at this point in the history
fix(grpc-handler): typo in switch-case ( 2x `clientStream`)
  • Loading branch information
smnbbrv authored Mar 24, 2022
2 parents 392d1a3 + 7c0cd96 commit ed9a17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/lib/grpc-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class GrpcHandler {
request.requestClass,
request.responseClass,
);
case GrpcCallType.clientStream: return request.client.bidiStream(
case GrpcCallType.bidiStream: return request.client.bidiStream(
request.path,
this.stream(request.requestData),
request.requestMetadata,
Expand Down

0 comments on commit ed9a17f

Please sign in to comment.