diff options
author | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-03-18 12:39:46 +0000 |
---|---|---|
committer | Ajith Sreekumar <ajith.sreekumar@bell.ca> | 2021-03-23 14:16:21 +0000 |
commit | e5a1908b92c02c91ad3a703105e5ac212ab27f6b (patch) | |
tree | 8a0b4f77158fa96a826f647ff692f788201800ce /testsuites/integration/integration-uservice-test/src/test/resources/policies | |
parent | d98383f3f9cabc97efdebc066b06df856c29cdcf (diff) |
Fixing parallel event execution problem in APEX-PDP REST layer
Parallel event execution in APEX was resulting in incorrect dynamic REST url. This issue is fixed in this review.
Change-Id: Id8a28c001a7fd7915df1f5909109bb369667ab40
Issue-ID: POLICY-3019
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
(cherry picked from commit 369a94a9fd626b35d52c2e7ee5f19e6ff6e1b9d8)
Diffstat (limited to 'testsuites/integration/integration-uservice-test/src/test/resources/policies')
-rw-r--r-- | testsuites/integration/integration-uservice-test/src/test/resources/policies/executionproperties/logic/TaskFetchHttpCode.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policies/executionproperties/logic/TaskFetchHttpCode.js b/testsuites/integration/integration-uservice-test/src/test/resources/policies/executionproperties/logic/TaskFetchHttpCode.js index b60e2acee..f4d979d1f 100644 --- a/testsuites/integration/integration-uservice-test/src/test/resources/policies/executionproperties/logic/TaskFetchHttpCode.js +++ b/testsuites/integration/integration-uservice-test/src/test/resources/policies/executionproperties/logic/TaskFetchHttpCode.js @@ -1,6 +1,7 @@ /* * ============LICENSE_START======================================================= * Copyright (C) 2019-2020 Nordix Foundation. + * Modifications Copyright (C) 2021 Bell Canada. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,11 +23,7 @@ executor.logger.debug(executor.getSubject().getId()); executor.logger.debug("executionProperties: " + executor.getExecutionProperties()); -if (executor.getExecutionProperties().get("HTTP_CODE_STATUS") == "500") - executor.outFields.put("testToRun", "CodeFilterSet"); -else - executor.outFields.put("testToRun", "CodeFilterDefault"); - +executor.outFields.put("testToRun", "CodeFilterSet"); executor.logger.debug("testToRun: " + executor.outFields.get("testToRun")); true; |