-
Notifications
You must be signed in to change notification settings - Fork 2
Known Issues
There is a known issue where functions that have an invalid connection string will time out during execution without any errors being thrown. If you're experiencing this issue, please confirm that your connection string setting is valid and refer to the following example.
In this example, the connection string setting is MyConnectionString
:
@app.blob_trigger(arg_name="client", path="PATH/TO/BLOB", connection="MyConnectionString")
def blob_trigger(client: blob.BlobClient):
MyConnectionString
must also be a defined App Setting with a valid connection string.

If you are executing the function locally, MyConnectionString
must be set in your local.settings.json
file.
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "",
"FUNCTIONS_WORKER_RUNTIME": "python",
"AzureWebJobsFeatureFlags": "EnableWorkerIndexing",
"PYTHON_ISOLATE_WORKER_DEPENDENCIES": "1",
"MyConnectionString": "<your connection string>"
}
}
Please note: support for sdk type bindings is not yet supported in the latest Core Tools version (4.0.57)
Please refer to the Issues and / or Wiki for the Azure Functions Python Worker
Please refer to the Issues and / or Wiki for the Azure SDK for Python