diff options
author | Dan Timoney <dtimoney@att.com> | 2020-01-23 16:27:28 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-01-23 21:28:01 +0000 |
commit | 7d1a46869fc2130835fb3217b4c72232b2b53e39 (patch) | |
tree | 5988f8c3935aa27297c90c207dac9f20c3d320f7 /platform-logic/generic-resource-api/src/main/xml | |
parent | 4c8c61c415a677f840bca4ba33591d6273d52515 (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: 7aed05b06829f287271846be9344478b02339766
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 100644 --- 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 100644 --- 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>
|