Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export async function remoteDebugJavaFunctionApp(context: IActionContext, node?:
const confirmMsg: string = localize('confirmRemoteDebug', 'The configurations of the selected app will be changed before debugging. Would you like to continue?');
const result: vscode.MessageItem = await context.ui.showWarningMessage(confirmMsg, { modal: true }, DialogResponses.yes, DialogResponses.learnMore);
if (result === DialogResponses.learnMore) {
await openUrl('https://aka.ms/azfunc-remotedebug');
await openUrl('https://aka.ms/azfunctions-remotedebugging');
return;
} else {
Comment thread
nturinski marked this conversation as resolved.
await updateSiteConfig(client, p, siteConfig);
Expand Down
Loading