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
description: "Deploys application code to an Azure Functions app using deployment methods such as zip deployment, Azure CLI, or GitHub Actions. This action publishes the app to the specified Function App resource, making it live in the target environment.",
12
+
troubleshooting: [
13
+
"Deployment succeeds but the app fails to start — check Application Insights or log stream for runtime errors.",
14
+
"Deployment fails due to '403 Forbidden' or '401 Unauthorized' — verify the publishing profile, service principal, or deployment credentials have appropriate permissions.",
15
+
"Code changes are not reflected — ensure you're not deploying to a staging slot or that deployment caching isn't interfering.",
16
+
"Missing or invalid host.json or function.json — validate your app's structure and configuration files.",
17
+
"Dependencies not installed — make sure your build step restores packages before deployment (e.g., npm install, pip install).",
18
+
"Cold start latency after deployment — this is normal for Consumption Plan apps and usually resolves after the first few executions.",
19
+
"Function runtime version mismatch — verify the target runtime version in Azure matches your local dev/runtime settings.",
20
+
"Zip deployment fails with 'conflicting changes' — ensure no simultaneous deployments or file locks are interfering.",
21
+
"Continuous deployment stuck or outdated — check your deployment center logs for GitHub/DevOps pipeline issues.",
22
+
"App Service Plan quota exceeded — check if the Function App’s resource usage has hit limits for memory, CPU, or file system.",
description: "A preflight operation that ensures that a new Durable Task Scheduler (DTS) resource and hub is created, configured, and ready for connection to the function app.",
28
+
troubleshooting: [
29
+
"DTS resource creation takes a long time (25+ minutes) and then fails - possible temporary service issue; you should recommend that the user try again a short time later and delete any unused resources that were created.",
30
+
"Task hub creation fails — if an existing parent DTS resource was selected, check that the scheduler is not stuck in a provisioning state.",
"description": "Deploys application code to an Azure Functions app using deployment methods such as zip deployment, Azure CLI, or GitHub Actions. This action publishes the app to the specified Function App resource, making it live in the target environment.",
76
-
"troubleshooting": [
77
-
"Deployment succeeds but the app fails to start — check Application Insights or log stream for runtime errors.",
78
-
"Deployment fails due to '403 Forbidden' or '401 Unauthorized' — verify the publishing profile, service principal, or deployment credentials have appropriate permissions.",
79
-
"Code changes are not reflected — ensure you're not deploying to a staging slot or that deployment caching isn't interfering.",
80
-
"Missing or invalid host.json or function.json — validate your app's structure and configuration files.",
81
-
"Dependencies not installed — make sure your build step restores packages before deployment (e.g., npm install, pip install).",
82
-
"Cold start latency after deployment — this is normal for Consumption Plan apps and usually resolves after the first few executions.",
83
-
"Function runtime version mismatch — verify the target runtime version in Azure matches your local dev/runtime settings.",
84
-
"Zip deployment fails with 'conflicting changes' — ensure no simultaneous deployments or file locks are interfering.",
85
-
"Continuous deployment stuck or outdated — check your deployment center logs for GitHub/DevOps pipeline issues.",
86
-
"App Service Plan quota exceeded — check if the Function App’s resource usage has hit limits for memory, CPU, or file system."
0 commit comments