Enable connection pooling by default (targeting Sept release) (#23777)

This commit is contained in:
Cheena Malhotra
2023-07-11 15:25:23 -07:00
committed by GitHub
parent 952bab7542
commit ddb5a13b45
3 changed files with 3 additions and 3 deletions

View File

@@ -192,7 +192,7 @@ export function getEnableConnectionPoolingConfig(): boolean {
return (azdata.env.quality === azdata.env.AppQuality.dev && setting?.globalValue === undefined && setting?.workspaceValue === undefined) ? true : config[enableConnectionPoolingConfig];
}
else {
return false; // disabled by default
return true; // enabled by default
}
}