mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-28 07:40:30 -04:00
Change configure Jupyter server steps from async to sync (#13937)
* change config steps to sync * fix tests * use pathexistsSync * remove pathExistsSync call * address PR comments
This commit is contained in:
@@ -259,7 +259,7 @@ export class JupyterSession implements nb.ISession {
|
||||
|
||||
public async configureKernel(): Promise<void> {
|
||||
let sparkmagicConfDir = path.join(utils.getUserHome(), '.sparkmagic');
|
||||
await utils.mkDir(sparkmagicConfDir);
|
||||
await utils.ensureDir(sparkmagicConfDir);
|
||||
|
||||
// Default to localhost in config file.
|
||||
let creds: ICredentials = {
|
||||
|
||||
Reference in New Issue
Block a user