From 0c3c714be1ba042e3afae10f3c9fb68022ccaa77 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 21 Jul 2020 16:38:04 -0700 Subject: [PATCH] Stop hardcoding python3 (#11464) --- extensions/notebook/src/jupyter/jupyterSessionManager.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/extensions/notebook/src/jupyter/jupyterSessionManager.ts b/extensions/notebook/src/jupyter/jupyterSessionManager.ts index 6d8ab65558..0bb78fb42a 100644 --- a/extensions/notebook/src/jupyter/jupyterSessionManager.ts +++ b/extensions/notebook/src/jupyter/jupyterSessionManager.ts @@ -329,11 +329,6 @@ export class JupyterSession implements nb.ISession { code: doNotCallChangeEndpointParams }, true); await future.done; - - future = this.sessionImpl.kernel.requestExecute({ - code: `%%configure -f${EOL}{"conf": {"spark.pyspark.python": "python3"}}` - }, true); - await future.done; } }