You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by of...@apache.org on 2019/11/01 09:43:47 UTC

[incubator-dlab] branch DLAB-1224 created (now f2c367c)

This is an automated email from the ASF dual-hosted git repository.

ofuks pushed a change to branch DLAB-1224
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at f2c367c  [DLAB-1224] Fixed bug with reconfiguration spark on Notebook [Azure]

This branch includes the following new commits:

     new f2c367c  [DLAB-1224] Fixed bug with reconfiguration spark on Notebook [Azure]

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/01: [DLAB-1224] Fixed bug with reconfiguration spark on Notebook [Azure]

Posted by of...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ofuks pushed a commit to branch DLAB-1224
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit f2c367cb8d3640fd4c424b5c15e3efbe7fa618dc
Author: Oleh Fuks <ol...@gmail.com>
AuthorDate: Fri Nov 1 11:43:21 2019 +0200

    [DLAB-1224] Fixed bug with reconfiguration spark on Notebook [Azure]
---
 .../src/main/java/com/epam/dlab/backendapi/util/RequestBuilder.java  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/services/self-service/src/main/java/com/epam/dlab/backendapi/util/RequestBuilder.java b/services/self-service/src/main/java/com/epam/dlab/backendapi/util/RequestBuilder.java
index 32df3b9..5a14da4 100644
--- a/services/self-service/src/main/java/com/epam/dlab/backendapi/util/RequestBuilder.java
+++ b/services/self-service/src/main/java/com/epam/dlab/backendapi/util/RequestBuilder.java
@@ -597,14 +597,13 @@ public class RequestBuilder {
 						.withApplicationName(getApplicationNameFromImage(userInstance.getImageName()))
 						.withNotebookImage(userInstance.getImageName())
 						.withConfig(config)
-						.withProject(userInstance.getProject());
+						.withProject(userInstance.getProject())
+						.withEndpoint(userInstance.getEndpoint());
 		if (cloudProvider() == AZURE && settingsDAO.isAzureDataLakeEnabled()) {
 			dto.withAzureUserRefreshToken(userInfo.getKeys().get(AZURE_REFRESH_TOKEN_KEY));
 		}
 
 		return dto;
-
-
 	}
 
 	public ExploratoryCheckInactivityAction newExploratoryCheckInactivityAction(UserInfo userInfo,


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org