Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 38 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Microsoft Azure Functions NodeJS Worker",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"@azure/functions": "^3.5.0-alpha.1",
"@azure/functions": "^3.5.0-alpha.2",
"@grpc/grpc-js": "^1.2.7",
"@grpc/proto-loader": "^0.6.4",
"blocked-at": "^1.2.0",
Expand Down
1 change: 1 addition & 0 deletions src/eventHandlers/WorkerInitHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export class WorkerInitHandler extends EventHandler<'workerInitRequest', 'worker
}

response.capabilities = {
RawHttpBodyBytes: 'true',
RpcHttpTriggerMetadataRemoved: 'true',
RpcHttpBodyOnly: 'true',
IgnoreEmptyValuedRpcHttpHeaders: 'true',
Expand Down
1 change: 1 addition & 0 deletions test/eventHandlers/WorkerInitHandler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export namespace Msg {
requestId: 'id',
workerInitResponse: {
capabilities: {
RawHttpBodyBytes: 'true',
RpcHttpBodyOnly: 'true',
RpcHttpTriggerMetadataRemoved: 'true',
IgnoreEmptyValuedRpcHttpHeaders: 'true',
Expand Down