diff options
author | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-02-09 18:21:49 +0000 |
---|---|---|
committer | Ajith Sreekumar <ajith.sreekumar@bell.ca> | 2021-02-11 10:01:27 +0000 |
commit | f86d08ca5598571410386372f3f06d5c8c686c74 (patch) | |
tree | 644913448310e4ea5fe201c16554a2f739d49a43 /examples/examples-servlet/src | |
parent | c64320a45b77eb3474f1f3f7372f1cd1f85ddfef (diff) |
Changes related to multi policy handling improvement in APEX
This review fixes an issue identified during testing the changes done
for improving multiple policy handling in APEX.
Changes done to a few test files in the previous review are reverted as
well.
Change-Id: I98324da708239d314aadd4c45dc377137fd552ba
Issue-ID: POLICY-2883
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
Diffstat (limited to 'examples/examples-servlet/src')
-rw-r--r-- | examples/examples-servlet/src/main/java/org/onap/policy/apex/examples/servlet/ApexServletListener.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/examples/examples-servlet/src/main/java/org/onap/policy/apex/examples/servlet/ApexServletListener.java b/examples/examples-servlet/src/main/java/org/onap/policy/apex/examples/servlet/ApexServletListener.java index 3375ff869..80ef7354b 100644 --- a/examples/examples-servlet/src/main/java/org/onap/policy/apex/examples/servlet/ApexServletListener.java +++ b/examples/examples-servlet/src/main/java/org/onap/policy/apex/examples/servlet/ApexServletListener.java @@ -1,7 +1,6 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2018 Ericsson. All rights reserved. - * 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. @@ -76,11 +75,7 @@ public class ApexServletListener implements ServletContextListener { } // Initialize apex - try { - apexMain = new ApexMain(argsList.toArray(new String[argsList.size()])); - } catch (ApexException e) { - LOGGER.error("Apex Engine initialization failed", e); - } + apexMain = new ApexMain(argsList.toArray(new String[argsList.size()])); } |