Skip to content
Snippets Groups Projects

refactor for dev env

Merged Georgi Michev requested to merge dev-environment-setup into main
12 files
+ 164
42
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -233,7 +233,7 @@ public class JsonUtils {
* @return the uri
*/
public static String getTSAPolicy() {
return System.getProperty("baseUrl") + ":8081/policy";
return System.getProperty("baseUrl") + "/policy";
}
/**
@@ -241,7 +241,7 @@ public class JsonUtils {
* @return the uri
*/
public static String getTSACache() {
return System.getProperty("baseUrl") + ":8083/v1/cache";
return System.getProperty("baseUrl") + "/cache";
}
/**
@@ -249,7 +249,7 @@ public class JsonUtils {
* @return the uri
*/
public static String getTSATask() {
return System.getProperty("baseUrl") + ":8082/v1";
return System.getProperty("baseUrl") + "/task";
}
/**
Loading