()
| 148 | } |
| 149 | |
| 150 | function getQueryTimeoutConfiguration(): number { |
| 151 | const defaultTimeout = 30000; // make this the same as the package.json-level configuration default |
| 152 | return ( |
| 153 | vscode.workspace.getConfiguration('SQLNotebook').get('queryTimeout') ?? |
| 154 | defaultTimeout |
| 155 | ); |
| 156 | } |