Skip to content

Commit

Permalink
Make messaging clear that consumption plans are not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcrane committed Aug 30, 2019
1 parent 9ff35b7 commit 51e9b52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"azFunc.showDeploySubpathWarningDescription": "Show a warning when the \"deploySubpath\" setting does not match the selected folder for deploying.",
"azFunc.startStreamingLogs": "Start Streaming Logs",
"azFunc.stopStreamingLogs": "Stop Streaming Logs",
"azFunc.enableRemoteDebugging": "Enable remote debugging for Node.js Function Apps running on Linux App Service plans (experimental).",
"azFunc.enableJavaRemoteDebugging": "Enable remote debugging for Java Functions Apps running on Windows (experimental).",
"azFunc.enableRemoteDebugging": "Enable remote debugging for Node.js Function Apps running on Linux App Service plans. Consumption plans are not supported. (experimental)",
"azFunc.enableJavaRemoteDebugging": "Enable remote debugging for Java Functions Apps running on Windows. (experimental)",
"azFunc.deleteProxy": "Delete Proxy...",
"azFunc.pickProcessTimeoutDescription": "The timeout (in seconds) to be used when searching for the Azure Functions host process. Since a build is required every time you F5, you may need to adjust this based on how long your build takes.",
"azFunc.templateVersion": "A runtime release version (any runtime) that species which templates will be used rather than the latest templates. This version will be used for ALL runtimes. (Requires a restart of VS Code to take effect)",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/remoteDebug/checkForRemoteDebugSupport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ export function checkForRemoteDebugSupport(siteConfig: WebSiteManagementModels.S
return;
}

throw new Error('Azure Remote Debugging is currently only supported for Node.js Function Apps running on Linux App Service plans.');
throw new Error('Azure Remote Debugging is currently only supported for Node.js Function Apps running on Linux App Service plans. Consumption plans are not supported.');
}

0 comments on commit 51e9b52

Please sign in to comment.