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/09/27 11:54:52 UTC

[incubator-dlab] branch DLAB-1142 created (now 96fb6e4)

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

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


      at 96fb6e4  [DLAB-1142]: Fixed bug with java dependency instalation (library instalation)

This branch includes the following new commits:

     new 96fb6e4  [DLAB-1142]: Fixed bug with java dependency instalation (library instalation)

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-1142]: Fixed bug with java dependency instalation (library instalation)

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

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

commit 96fb6e46d37bd760c17fe3e5747da4df340bb0f7
Author: ofuks <ol...@gmail.com>
AuthorDate: Fri Sep 27 14:54:15 2019 +0300

    [DLAB-1142]: Fixed bug with java dependency instalation (library instalation)
---
 .../src/main/java/com/epam/dlab/rest/client/RESTService.java            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/dlab-webapp-common/src/main/java/com/epam/dlab/rest/client/RESTService.java b/services/dlab-webapp-common/src/main/java/com/epam/dlab/rest/client/RESTService.java
index 76e4c79..5008bcd 100644
--- a/services/dlab-webapp-common/src/main/java/com/epam/dlab/rest/client/RESTService.java
+++ b/services/dlab-webapp-common/src/main/java/com/epam/dlab/rest/client/RESTService.java
@@ -59,7 +59,7 @@ public class RESTService {
 
 	public <T> T get(URI path, Class<T> clazz) {
 		log.debug("REST get {}", path);
-		return getWebTarget(path.toString())
+		return client.target(URI.create(url + path.toString()))
 				.request()
 				.get(clazz);
 	}


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