Skip to content

Commit 8ee5144

Browse files
committedAug 11, 2021
src/goDebugConfiguration: convert processId to int
The result of using the process picker commands ends up with a string in the launch config, but the processId needs to be an integer. Convert the string to an integer after the command has been run. Fixes #1679 Change-Id: I97aeab6a150e5af36eb58eb14b70e3ee5ac53a74 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/341210 Trust: Suzy Mueller <suzmue@golang.org> Trust: Hyang-Ah Hana Kim <hyangah@gmail.com> Run-TryBot: Suzy Mueller <suzmue@golang.org> TryBot-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com> (cherry picked from commit 336b9f7) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/341230 Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
1 parent 0aef5fb commit 8ee5144

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed
 

‎src/goDebugConfiguration.ts

+12-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from './goInstallTools';
2121
import { packagePathToGoModPathMap } from './goModules';
2222
import { getTool, getToolAtVersion } from './goTools';
23-
import { pickProcess, pickProcessByName } from './pickProcess';
23+
import { pickGoProcess, pickProcess, pickProcessByName } from './pickProcess';
2424
import { getFromGlobalState, updateGlobalState } from './stateUtils';
2525
import { getBinPath, getGoVersion } from './util';
2626
import { parseEnvFiles } from './utils/envUtils';
@@ -313,16 +313,13 @@ export class GoDebugConfigurationProvider implements vscode.DebugConfigurationPr
313313
if (debugConfiguration.request === 'attach' && debugConfiguration['mode'] === 'local') {
314314
if (!debugConfiguration['processId'] || debugConfiguration['processId'] === 0) {
315315
// The processId is not valid, offer a quickpick menu of all processes.
316-
debugConfiguration['processId'] = parseInt(await pickProcess(), 10);
316+
debugConfiguration['processId'] = await pickProcess();
317317
} else if (
318318
typeof debugConfiguration['processId'] === 'string' &&
319319
debugConfiguration['processId'] !== '${command:pickProcess}' &&
320320
debugConfiguration['processId'] !== '${command:pickGoProcess}'
321321
) {
322-
debugConfiguration['processId'] = parseInt(
323-
await pickProcessByName(debugConfiguration['processId']),
324-
10
325-
);
322+
debugConfiguration['processId'] = await pickProcessByName(debugConfiguration['processId']);
326323
}
327324
}
328325
return debugConfiguration;
@@ -398,6 +395,15 @@ export class GoDebugConfigurationProvider implements vscode.DebugConfigurationPr
398395
debugConfiguration[attr] = path.join(workspaceRoot, debugConfiguration[attr]);
399396
});
400397
}
398+
399+
if (debugConfiguration.request === 'attach' && debugConfiguration['mode'] === 'local') {
400+
// processId needs to be an int, but the substituted variables from pickGoProcess and pickProcess
401+
// become a string. Convert any strings to integers.
402+
if (typeof debugConfiguration['processId'] === 'string') {
403+
debugConfiguration['processId'] = parseInt(debugConfiguration['processId'], 10);
404+
}
405+
}
406+
401407
return debugConfiguration;
402408
}
403409

0 commit comments

Comments
 (0)
Please sign in to comment.