We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d082d1 commit 14cacd5Copy full SHA for 14cacd5
src/extension/noConfigDebugInit.ts
@@ -46,7 +46,7 @@ export async function registerNoConfigDebug(
46
// create a stable hash for the workspace folder, reduce terminal variable churn
47
const hash = crypto.createHash('sha256');
48
hash.update(workspaceUri.toString());
49
- const stableWorkspaceHash = hash.digest('hex');
+ const stableWorkspaceHash = hash.digest('hex').slice(0, 16);
50
51
const tempDirPath = path.join(extPath, '.noConfigDebugAdapterEndpoints');
52
const tempFilePath = path.join(tempDirPath, `endpoint-${stableWorkspaceHash}.txt`);
0 commit comments