diff options
author | Dan Timoney <dtimoney@att.com> | 2020-01-23 16:27:28 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-01-23 16:27:28 -0500 |
commit | 134b574d085564b43ceca263a0ead17c7c29346d (patch) | |
tree | 3449dba84156ece25722af797191763f06050853 /platform-logic/generic-resource-api/src/main/xml | |
parent | 4edbd78ff9702413e5df99e9921b1e46fff0d602 (diff) |
Add missing backticks in test expression
Backticks were missing from test expression, causing test not to be
resolved properly.
Change-Id: I1fdc00dbe16c789837d71cc263e262b4167695f3
Issue-ID: SDNC-1022
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: 6b0f198a98a67ecac3b4a8ba9b8b2ab34bac735d
Diffstat (limited to 'platform-logic/generic-resource-api/src/main/xml')
2 files changed, 2 insertions, 2 deletions
diff --git a/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vf-module-topology-operation-assign.xml b/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vf-module-topology-operation-assign.xml index b6cd4203..f1f9ca10 100755 --- a/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vf-module-topology-operation-assign.xml +++ b/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vf-module-topology-operation-assign.xml @@ -7,7 +7,7 @@ <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />
<parameter name='contextPrefix' value='prop' />
</execute>
- <switch test='length($vf-module-topology-operation-input.sdnc-request-header.svc-notification-url) == 0'>
+ <switch test='`length($vf-module-topology-operation-input.sdnc-request-header.svc-notification-url) == 0`'>
<outcome value='true'>
<call module='GENERIC-RESOURCE-API' rpc='vf-module-topology-operation-assign-sync' mode='sync' ></call>
</outcome>
diff --git a/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vnf-topology-operation-assign.xml b/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vnf-topology-operation-assign.xml index aaefc8e4..9c6089fb 100755 --- a/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vnf-topology-operation-assign.xml +++ b/platform-logic/generic-resource-api/src/main/xml/GENERIC-RESOURCE-API_vnf-topology-operation-assign.xml @@ -7,7 +7,7 @@ <parameter name='fileName' value='%SDNC_CONFIG_DIR%/generic-resource-api-dg.properties' />
<parameter name='contextPrefix' value='prop' />
</execute>
- <switch test='length($vnf-topology-operation-input.sdnc-request-header.svc-notification-url) == 0'>
+ <switch test='`length($vnf-topology-operation-input.sdnc-request-header.svc-notification-url) == 0`'>
<outcome value='true'>
<call module='GENERIC-RESOURCE-API' rpc='vnf-topology-operation-assign-sync' mode='sync' ></call>
</outcome>
|