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:53 UTC

[incubator-dlab] 01/01: [DLAB-1142]: Fixed bug with java dependency instalation (library instalation)

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