diff options
author | andre.schmid <andre.schmid@est.tech> | 2022-02-22 13:50:12 +0000 |
---|---|---|
committer | andre.schmid <andre.schmid@est.tech> | 2022-02-22 19:57:35 +0000 |
commit | d0c2403f1f7088d60b135976c40917302daf8b9e (patch) | |
tree | 66570d9b514a31ca7c9851543f2df95b281de2bf /utils/webseal-simulator/src/main/java/org | |
parent | 69b3a6ed3730a516a636c40d4877c7f38ebbc111 (diff) |
Fix bottleneck on simulator requests
Removes unnecessary synchronized in one of the simulator methods,
which almost all calls pass through. This was restricting to execute
calls in parallel.
Change-Id: I7c53eee951c02031b78adacdc292aa51e6e66186
Issue-ID: SDC-3885
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'utils/webseal-simulator/src/main/java/org')
-rw-r--r-- | utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java b/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java index 51d6796c4c..0637f7e29f 100644 --- a/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java +++ b/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SdcProxy.java @@ -146,7 +146,7 @@ public class SdcProxy extends HttpServlet { proxy(request, response, MethodEnum.DELETE); } - private synchronized void proxy(HttpServletRequest request, HttpServletResponse response, MethodEnum methodEnum) throws IOException { + private void proxy(HttpServletRequest request, HttpServletResponse response, MethodEnum methodEnum) throws IOException { Map<String, String[]> requestParameters = request.getParameterMap(); String userIdHeader = getUseridFromRequest(request); |