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 2020/03/05 15:11:53 UTC

[incubator-dlab] branch DLAB-1541 updated: [DLAB-1586] Stopping/starting/terminating statuses of notebook conveyed to DLab UI

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

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


The following commit(s) were added to refs/heads/DLAB-1541 by this push:
     new 6695fe7  [DLAB-1586] Stopping/starting/terminating statuses of notebook conveyed to DLab UI
     new 082e5f4  Merge remote-tracking branch 'origin/DLAB-1541' into DLAB-1541
6695fe7 is described below

commit 6695fe729de53de5e545120f4d87ef923333ba7d
Author: Oleh Fuks <ol...@gmail.com>
AuthorDate: Thu Mar 5 17:10:14 2020 +0200

    [DLAB-1586] Stopping/starting/terminating statuses of notebook conveyed to DLab UI
---
 .../com/epam/dlab/backendapi/service/impl/ExploratoryServiceImpl.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImpl.java b/services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImpl.java
index a4d45cb..77d870b 100644
--- a/services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImpl.java
+++ b/services/self-service/src/main/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImpl.java
@@ -320,13 +320,14 @@ public class ExploratoryServiceImpl implements ExploratoryService {
 	 * Instantiates and returns the descriptor of exploratory environment status.
 	 *
 	 * @param user            user name
-	 * @param project
+	 * @param project         project
 	 * @param exploratoryName name of exploratory environment.
 	 * @param status          status for exploratory environment.
 	 */
 	private StatusEnvBaseDTO<?> createStatusDTO(String user, String project, String exploratoryName, UserInstanceStatus status) {
 		return new ExploratoryStatusDTO()
 				.withUser(user)
+				.withProject(project)
 				.withExploratoryName(exploratoryName)
 				.withStatus(status);
 	}


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