Fix query history storage folder creation (#22229)

This commit is contained in:
Charles Gagnon
2023-03-08 10:51:14 -08:00
committed by GitHub
parent 31fd467bec
commit 3937f62ce4

View File

@@ -29,7 +29,6 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
// Create the global storage folder now for storing the query history persistance file
const storageUri = context.globalStorageUri;
try {
throw new Error('Test');
await fs.mkdir(storageUri.fsPath);
} catch (err) {
if (err.code !== 'EEXIST') {