aboutsummaryrefslogtreecommitdiffstats
path: root/models-interactions/model-actors/actor.test/src
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2020-03-06 14:00:58 -0500
committerJim Hahn <jrh3@att.com>2020-03-06 15:13:52 -0500
commit3c1fb89886d7ebf2efe1183e92b4ed8191f506b4 (patch)
tree6515fccb8b937630aaf8fff6490c483177a414ed /models-interactions/model-actors/actor.test/src
parent8021fe6aa24b4a4c586cda78255c143eca3e3520 (diff)
Log full URL for REST calls
Actors only log the URI, without the host and port info. Modified to log the full URL. Also adjusted URLs for trailing "/". Issue-ID: POLICY-1625 Signed-off-by: Jim Hahn <jrh3@att.com> Change-Id: I0c9a2d139258ef23bc363a873b56f5cb4680247d
Diffstat (limited to 'models-interactions/model-actors/actor.test/src')
-rw-r--r--models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicHttpOperation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicHttpOperation.java b/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicHttpOperation.java
index 81156c184..6786b7da9 100644
--- a/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicHttpOperation.java
+++ b/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicHttpOperation.java
@@ -47,8 +47,8 @@ import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpConfig;
*/
public class BasicHttpOperation<Q> extends BasicOperation {
protected static final String MY_CLIENT = "my-client";
- protected static final String BASE_URI = "/base-uri";
- protected static final String PATH = "/my-path";
+ protected static final String BASE_URI = "http://my-host:6969/base-uri/";
+ protected static final String PATH = "my-path/";
@Captor
protected ArgumentCaptor<InvocationCallback<Response>> callbackCaptor;