diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2024-06-21 11:49:48 +0100 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2024-06-21 11:49:48 +0100 |
commit | 7186306a3f1d3af3a8365486e32e198135f65806 (patch) | |
tree | 1f7c17d4b1e08ff9c0999f6504ccacff49b14665 /cps-ncmp-service/src/main | |
parent | 01b58388db5d6a16c8a3f946fbfb82100377cbda (diff) |
Fix compile issue after facade introduction
Due to automatic rebase, a method got renamed in one commit but not
the other.
Issue-ID: CPS-2263
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Id0fa8eba79cb98bb24419bfddc0c9b9e8c9a42d3
Diffstat (limited to 'cps-ncmp-service/src/main')
-rw-r--r-- | cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/datajobs/DmiSubJobRequestHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/datajobs/DmiSubJobRequestHandler.java b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/datajobs/DmiSubJobRequestHandler.java index 69eadab26a..8027e69d56 100644 --- a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/datajobs/DmiSubJobRequestHandler.java +++ b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/datajobs/DmiSubJobRequestHandler.java @@ -65,7 +65,7 @@ public class DmiSubJobRequestHandler { dataJobMetadata.dataContentType(), dataJobId, dmi3ggpWriteOperations); final String dmiResourceUrl = getDmiResourceUrl(dataJobId, producerKey); - final ResponseEntity<Object> responseEntity = dmiRestClient.postOperationWithJsonData( + final ResponseEntity<Object> responseEntity = dmiRestClient.synchronousPostOperationWithJsonData( RequiredDmiService.DATA, dmiResourceUrl, jsonObjectMapper.asJsonString(subJobWriteRequest), @@ -82,4 +82,4 @@ public class DmiSubJobRequestHandler { return DmiServiceUrlBuilder.newInstance().pathSegment("writeJob").variablePathSegment("requestId", dataJobId) .build(producerKey.dmiServiceName(), dmiProperties.getDmiBasePath()); } -}
\ No newline at end of file +} |