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
* Updated log messages
* Enable local hook to remove __init__.py files
* Updated documentation
* Update project version to 0.3.18
* Update changelog for version v0.3.18
Updated version number and log message details.
| 1 | log_into_portal | Log into Azure portal as service principal |`cfaazurefunction.log_into_portal(): Error logging into Azure Portal.`|
307
-
| 2 | publish_function | Create a zip file with Python template and user package. Upload the zip file to function app created in the previous step. |`cfaazurefunction.publish_function(): Error publishing Function App`|
308
-
| 3 | restart_function | Restart the function app |`cfaazurefunction.restart_function(): Error restarting Function App`|
306
+
| 1 | log_into_portal | Log into Azure portal as service principal |`FunctionAppClient.log_into_portal(): Error logging into Azure Portal.`|
307
+
| 2 | publish_function | Create a zip file with Python template and user package. Upload the zip file to function app created in the previous step. |`FunctionAppClient.publish_function(): Error publishing Function App`|
308
+
| 3 | restart_function | Restart the function app |`FunctionAppClient.restart_function(): Error restarting Function App`|
309
309
310
310
All errors and exceptions encountered during deployment shall be written to the console (e.g., Shell, PowerShell). The error log prefix indicates which stage that error occurred in.
311
311
@@ -327,29 +327,29 @@ Select logs from cfatimer panel:
327
327
### Detailed Error Messages
328
328
329
329
### Login Errors:
330
-
-`cfaazurefunction.retrieve_secret()`: Unable to connect to Key Vault: `AZURE_SERVICE_PRINCIPAL_ID` environment variable is missing.
331
-
-`cfaazurefunction.retrieve_secret()`: One of these must be provided: `AZURE_SERVICE_PRINCIPAL_SECRET_NAME` or `AZURE_SERVICE_PRINCIPAL_SECRET`
332
-
-`cfaazurefunction.log_into_portal()`: Error logging into Azure Portal.
330
+
-`FunctionAppClient.retrieve_secret()`: Unable to connect to Key Vault: `AZURE_SERVICE_PRINCIPAL_ID` environment variable is missing.
331
+
-`FunctionAppClient.retrieve_secret()`: One of these must be provided: `AZURE_SERVICE_PRINCIPAL_SECRET_NAME` or `AZURE_SERVICE_PRINCIPAL_SECRET`
332
+
-`FunctionAppClient.log_into_portal()`: Error logging into Azure Portal.
333
333
334
334
### Health Check Errors:
335
-
-`cfaazurefunction.enable_health_check()`: Error updating health check
335
+
-`FunctionAppClient.enable_health_check()`: Error updating health check
336
336
337
337
### App Settings Errors:
338
-
-`cfaazurefunction.update_app_settings()`: Error updating app settings for Function App
338
+
-`FunctionAppClient.update_app_settings()`: Error updating app settings for Function App
339
339
340
340
### Publishing Errors:
341
-
-`cfaazurefunction.publish_function()`: Error publishing Function App
341
+
-`FunctionAppClient.publish_function()`: Error publishing Function App
342
342
343
343
### Restart Errors:
344
-
-`cfaazurefunction.restart_function()`: Error restarting Function App
344
+
-`FunctionAppClient.restart_function()`: Error restarting Function App
345
345
346
346
### Deployment Errors:
347
347
348
-
-`cfaazurefunction.deploy_function()`: Deployment aborted due to missing service principal credentials.
349
-
-`cfaazurefunction.deploy_function()`: Deployment aborted due to login failure.
350
-
-`cfaazurefunction.deploy_function()`: Deployment aborted because no function apps are available.
351
-
-`cfaazurefunction.deploy_function()`: Deployment did not complete because Function App publish operation failed.
352
-
-`cfaazurefunction.deploy_function()`: Deployment was completed however Function App restart operation failed.
348
+
-`FunctionAppClient.deploy_function()`: Deployment aborted due to missing service principal credentials.
349
+
-`FunctionAppClient.deploy_function()`: Deployment aborted due to login failure.
350
+
-`FunctionAppClient.deploy_function()`: Deployment aborted because no function apps are available.
351
+
-`FunctionAppClient.deploy_function()`: Deployment did not complete because Function App publish operation failed.
352
+
-`FunctionAppClient.deploy_function()`: Deployment was completed however Function App restart operation failed.
353
353
354
354
### Permissions Issues
355
355
Ensure the Service Principal has the necessary permissions to read from and write to the Azure Blob Storage.
0 commit comments