azure-functions-python-worker
azure-functions-python-worker copied to clipboard
Python worker for Azure Functions.
## Description Previously, the cache for deferred bindings returned a client based on the resource it was attached to. Therefore, two functions that had client types pointed to the same...
#### Affects models V1 and V2 and the latest available library version. #### Service Bus Subscription #### Question We are encountering an issue that Azure support has not been able...
#### Is your question related to a specific version? If so, please specify: The question is not related to a specific version. #### What binding does your question apply to,...
## Description In order to support aio blob client types, the `decode()` method needs to be async. This is currently not supported, because the `from_incoming_proto()` method in the worker, where...
## Description Fixes # --- ### PR information - [ ] The title of the PR is clear and informative. - [ ] There are a small number of commits,...
Worker Changes to get route parameters of http invocation request from invocation request "route_params" attributes after host made update in https://github.com/Azure/azure-functions-host/pull/9997. TODO: Update lc test after lc image released with...
I'm referring to this code https://github.com/Azure/azure-functions-python-library/blob/dev/azure/functions/extension/app_extension_base.py#L65-L70 ```python @classmethod def pre_invocation_app_level(cls, logger: Logger, context: Context, func_args: typing.Dict[str, object] = {}, *args, **kwargs) -> None: ``` and line `func_args: typing.Dict[str, object] =...
When using Queue Output Binding, sending a string as a queue message might result in several different queue messages. This does not align with the documentation[1], nor developer expectation. For...
### Expected Behavior Python Function Apps using V1 programming model that are: * Import modules from right paths following https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python?tabs=asgi%2Capplication-level&pivots=python-mode-configuration#import-behavior * Not defining __app__ as a module explicitly in your...