diff options
author | xg353y <xg353y@intl.att.com> | 2019-05-09 11:41:30 +0200 |
---|---|---|
committer | xg353y <xg353y@intl.att.com> | 2019-05-09 11:41:30 +0200 |
commit | bc753dfd1a7eeccecd34763674653d319b822f2b (patch) | |
tree | 7382d1ed5786874f018f42a45e0086cc7866514d /src/main/resources/clds/camel/rest/clamp-api-v2.xml | |
parent | b0f7e5bf406a393abc6cfb9fc6cf1003b6e6ef10 (diff) |
Fix the loop log issue
Fix the issue where loop log doesn't refresh in UI on time; update the
Refresh Status menu to point to the correct url
Issue-ID: CLAMP-360
Change-Id: I65064e8f3fe16beea4cb397f66d8e871db17f77d
Signed-off-by: xg353y <xg353y@intl.att.com>
Diffstat (limited to 'src/main/resources/clds/camel/rest/clamp-api-v2.xml')
-rw-r--r-- | src/main/resources/clds/camel/rest/clamp-api-v2.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/resources/clds/camel/rest/clamp-api-v2.xml b/src/main/resources/clds/camel/rest/clamp-api-v2.xml index 4d3c6b389..0d6d3cb2f 100644 --- a/src/main/resources/clds/camel/rest/clamp-api-v2.xml +++ b/src/main/resources/clds/camel/rest/clamp-api-v2.xml @@ -606,8 +606,6 @@ <to uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Get Status request successfully executed','INFO',${exchangeProperty[loopObject]})" /> <to - uri="bean:org.onap.clamp.loop.LoopController?method=getLoop(${header.loopName})" /> - <to uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" /> <doCatch> <exception>java.lang.Exception</exception> @@ -622,6 +620,10 @@ <to uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Get Status request failed','ERROR',${exchangeProperty[loopObject]})" /> </doCatch> + <doFinally> + <to + uri="bean:org.onap.clamp.loop.LoopController?method=getLoop(${header.loopName})" /> + </doFinally> </doTry> </route> </get> |