Skip to content

Commit 73b0dd6

Browse files
authored
Merge pull request #133 from James-JLC/master
2 parents e536265 + 050d0ff commit 73b0dd6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/generated/api.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2617,7 +2617,7 @@
26172617
},
26182618
{
26192619
"kind": "Content",
2620-
"text": "{\n HTTP: string;\n GRRC: string;\n }"
2620+
"text": "{\n HTTP: string;\n GRPC: string;\n }"
26212621
},
26222622
{
26232623
"kind": "Content",

docs/generated/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export abstract class OpenFunctionRuntime {
154154
setTrigger(req: Request_3, res?: Response_2): void;
155155
get sidecarPort(): {
156156
HTTP: string;
157-
GRRC: string;
157+
GRPC: string;
158158
};
159159
// Warning: (ae-forgotten-export) The symbol "OpenFunctionTrigger" needs to be exported by the entry point index.d.ts
160160
protected trigger?: OpenFunctionTrigger;

src/openfunction/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export abstract class OpenFunctionRuntime {
138138
get sidecarPort() {
139139
return {
140140
HTTP: env.DAPR_HTTP_PORT || '3500',
141-
GRRC: env.DAPR_GRPC_PORT || '50001',
141+
GRPC: env.DAPR_GRPC_PORT || '50001',
142142
};
143143
}
144144

0 commit comments

Comments
 (0)