FIX: prevents race condition where the same report is loaded multiple times (#6953)

This commit is contained in:
Joffrey JAFFEUX 2019-01-25 19:29:45 +01:00 committed by GitHub
parent db76e5a368
commit 0e1862013a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -74,9 +74,7 @@ export default {
.finally(() => {
_processing--;
// when a request is done we want to start processing queue
// without waiting for debouncing
debounce(this, this._processQueue, DEBOUNCING_DELAY, true);
debounce(this, this._processQueue, DEBOUNCING_DELAY);
});
},