You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PR #188, there is a thread safety concern in the processSchemeData method of BSEStarMasterDataService.java. The double-checked locking pattern with ReentrantLock may still pose concurrency issues if the mfAmcService.findByCode and mfAmcService.saveMfAmc methods are not thread-safe. Additionally, locking on a single ReentrantLock may become a bottleneck.
In PR #188, there is a thread safety concern in the
processSchemeData
method ofBSEStarMasterDataService.java
. The double-checked locking pattern withReentrantLock
may still pose concurrency issues if themfAmcService.findByCode
andmfAmcService.saveMfAmc
methods are not thread-safe. Additionally, locking on a singleReentrantLock
may become a bottleneck.Refer to the comment: Discussion
Requested by @rajadilipkolli.
The text was updated successfully, but these errors were encountered: