HDFS-15249 ThrottledAsyncChecker is not thread-safe. (#1922)
This commit is contained in:
parent
0b855b9f35
commit
c12ddbd1de
|
@ -117,8 +117,8 @@ public class ThrottledAsyncChecker<K, V> implements AsyncChecker<K, V> {
|
|||
* will receive the same Future.
|
||||
*/
|
||||
@Override
|
||||
public Optional<ListenableFuture<V>> schedule(Checkable<K, V> target,
|
||||
K context) {
|
||||
public synchronized Optional<ListenableFuture<V>> schedule(
|
||||
Checkable<K, V> target, K context) {
|
||||
if (checksInProgress.containsKey(target)) {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue