From 58f25e18935170da864fb36bffbbc2eecf5b1106 Mon Sep 17 00:00:00 2001 From: iishiishii Date: Wed, 29 May 2024 16:17:08 +1000 Subject: [PATCH] update play servers --- src/main/sessionwindow/sessionwindow.ts | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/main/sessionwindow/sessionwindow.ts b/src/main/sessionwindow/sessionwindow.ts index a8c2a574..f3ef8000 100644 --- a/src/main/sessionwindow/sessionwindow.ts +++ b/src/main/sessionwindow/sessionwindow.ts @@ -995,16 +995,11 @@ export class SessionWindow implements IDisposable { this._remoteServerSelectDialog.load(); + // switched them from binderhub to jupyterhub so they don't required the "/v2/gh/neurodesk/neurodesktop/main" this._registry.getRunningServerList().then(runningServers => { - runningServers.push( - 'https://play-sydney.neurodesk.org/v2/gh/neurodesk/neurodesktop/main' - ); - runningServers.push( - 'https://play-iowa.neurodesk.org/v2/gh/neurodesk/neurodesktop/main' - ); - runningServers.push( - 'https://play-frankfurt.neurodesk.org/v2/gh/neurodesk/neurodesktop/main' - ); + runningServers.push('https://play.neurodesk.cloud.edu.au/'); + runningServers.push('https://play-iowa.neurodesk.org/'); + runningServers.push('https://play-frankfurt.neurodesk.org/'); this._remoteServerSelectDialog.setRunningServerList(runningServers); }); }