diff options
author | 2019-02-18 13:28:05 +0000 | |
---|---|---|
committer | 2019-02-18 13:28:06 +0000 | |
commit | 8ef504fa4b7117af1138d653106c9aa328d0522a (patch) | |
tree | a0901e1d741ab26aa4fc09544efb01b9eb972104 /adapters/mso-sdnc-adapter/src/main | |
parent | dbd5bb99cd6a6c8a7465acb31468a07f2523f188 (diff) | |
parent | db87a79ae00c35499a61fd3d41122021cb9a9e25 (diff) |
Merge "fix critical sonar bugs"
Diffstat (limited to 'adapters/mso-sdnc-adapter/src/main')
-rw-r--r-- | adapters/mso-sdnc-adapter/src/main/java/org/onap/so/adapters/sdnc/impl/SDNCRestClient.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/adapters/mso-sdnc-adapter/src/main/java/org/onap/so/adapters/sdnc/impl/SDNCRestClient.java b/adapters/mso-sdnc-adapter/src/main/java/org/onap/so/adapters/sdnc/impl/SDNCRestClient.java index 65c7d093a9..59884f25b8 100644 --- a/adapters/mso-sdnc-adapter/src/main/java/org/onap/so/adapters/sdnc/impl/SDNCRestClient.java +++ b/adapters/mso-sdnc-adapter/src/main/java/org/onap/so/adapters/sdnc/impl/SDNCRestClient.java @@ -6,6 +6,7 @@ * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved. * ================================================================================ * Modifications Copyright (C) 2018 IBM. + * Modifications Copyright (c) 2019 Samsung * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -90,6 +91,7 @@ public class SDNCRestClient{ Thread.sleep(5000); } catch (InterruptedException e) { e.printStackTrace(); + Thread.currentThread().interrupt(); } String action = bpelRequest.getRequestHeader().getSvcAction(); |