Skip to content
Merged
Changes from 2 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
11 changes: 11 additions & 0 deletions azure_functions_worker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ def parse_args():
'syslog, or a file path')
parser.add_argument('--grpcMaxMessageLength', type=int,
dest='grpc_max_msg_len')
parser.add_argument('--functions-uri', dest='functions_uri',
help='URI with IP Address and Port used to'
Comment thread
pdthummar marked this conversation as resolved.
' connect to the Host via gRPC.')
parser.add_argument('--functions-request-id', dest='functions_request_id',
help='Request ID used for gRPC communication '
'with the Host.')
parser.add_argument('--functions-worker-id', dest='functions_worker_id',
help='Worker ID assigned to this language worker.')
parser.add_argument('--functions-grpc-max-message-length', type=int,
dest='functions_grpc_max_msg_len',
help='Max grpc message length for Functions')
return parser.parse_args()


Expand Down