You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Multiple Python workers not supported](#multiple-python-workers-not-supported)
26
+
26
27
*[Could not load file or assembly](#troubleshoot-could-not-load-file-or-assembly)
28
+
27
29
*[Unable to resolve the Azure Storage connection named Storage](#troubleshoot-unable-to-resolve-the-Azure-Storage-connection)
30
+
28
31
*[Issues with deployment](#issue-with-deployment)
29
32
::: zone-end
30
33
31
-
::: zone pivot="python-mode-configuration"
32
34
## Troubleshoot ModuleNotFoundError
33
35
34
36
This section helps you troubleshoot module-related errors in your Python function app. These errors typically result in the following Azure Functions error message:
@@ -152,7 +154,6 @@ Sometimes, the package may have been integrated into [Python Standard Library](h
152
154
However, if you're facing an issue that it hasn't been fixed and you're on a deadline. I encourage you to do some research and find a similar package for your project. Usually, the Python community will provide you with a wide variety of similar libraries that you can use.
153
155
154
156
---
155
-
::: zone-end
156
157
157
158
## Troubleshoot cannot import 'cygrpc'
158
159
@@ -189,7 +190,7 @@ Check if your Python interpreter matches our expected version by `py --version`
189
190
If your Python interpreter version doesn't meet the requirements for Functions, instead download the Python 3.6, 3.7, 3.8, or 3.9 interpreter from [Python Software Foundation](https://www.python.org/downloads).
190
191
191
192
---
192
-
::: zone pivot="python-mode-configuration"
193
+
193
194
## Troubleshoot Python Exited With Code 137
194
195
195
196
Code 137 errors are typically caused by out-of-memory issues in your Python function app. As a result, you get the following Azure Functions error message:
@@ -250,7 +251,7 @@ There are two ways to mitigate this issue.
250
251
```
251
252
252
253
---
253
-
::: zone-end
254
+
254
255
::: zone pivot="python-mode-decorators"
255
256
## Multiple Python workers not supported
256
257
@@ -307,8 +308,8 @@ You may see this error in your local output as the following message:
307
308
> `Value cannot be null. (Parameter 'provider')`
308
309
309
310
This error is a result of how extensions are loaded from the bundle locally. To resolve this error, you can do one of the following:
310
-
* Use a storage emulator such as [Azurerite](./storage/common/storage-use-azurite.md). This is a good option when you aren't planning to use a storage account in your functionapplication.
311
-
* Create a storage account and add a connection string to the `AzureWebJobsStorage` environment variable in`localsettings.json`. Use this option when you are using a storage account trigger or binding with your application, or if you have an existing storage account. To get started, see [Create a storage account](./storage/common/storage-account-create.md).
311
+
* Use a storage emulator such as [Azurerite](../storage/common/storage-use-azurite.md). This is a good option when you aren't planning to use a storage account in your functionapplication.
312
+
* Create a storage account and add a connection string to the `AzureWebJobsStorage` environment variable in`localsettings.json`. Use this option when you are using a storage account trigger or binding with your application, or if you have an existing storage account. To get started, see [Create a storage account](../storage/common/storage-account-create.md).
0 commit comments