Skip to content

Commit 88f1f87

Browse files
Merge pull request #14915 from yeonjuan/fix-wrong-type
refactor(microservices): fix wrong type for keepalive keys
2 parents d3764f5 + f115c59 commit 88f1f87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/microservices/client/client-grpc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class ClientGrpcProxy
126126
return {};
127127
}
128128
const keepaliveKeys: Record<
129-
keyof GrpcOptions['options']['keepalive'],
129+
keyof NonNullable<GrpcOptions['options']['keepalive']>,
130130
string
131131
> = {
132132
keepaliveTimeMs: 'grpc.keepalive_time_ms',

0 commit comments

Comments
 (0)