Finish Hotfix-61
This commit is contained in:
@@ -16,8 +16,8 @@ public class ServiceCallScheduledOperationRunner extends BaseScheduledOperationR
|
||||
@Override
|
||||
public void run() throws Exception {
|
||||
String port = UtilityServer.getLocalServerPort();
|
||||
String baseUrl = "http://localhost:" + port + "/ems-api/"
|
||||
+ getDtoInstance().getMethodName() + "?"
|
||||
String baseUrl = "http://localhost:" + port + "/ems-api"
|
||||
+ (getDtoInstance().getMethodName().startsWith("/") ? "" : "/") + getDtoInstance().getMethodName() + "?"
|
||||
+ CommonConstants.PROFILE_DB + "=" + getDtoInstance().getProfileDb()
|
||||
+ (getDtoInstance().getQueryParams() != null ? ("&" + getDtoInstance().getQueryParams()) : "");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user