Clear queue before exiting cache manager thread.

This commit is contained in:
CalDescent 2023-05-13 13:36:40 +01:00
parent 5c7d12f25e
commit 5ed3237d2f

View File

@ -50,6 +50,9 @@ public class ArbitraryDataCacheManager extends Thread {
} catch (InterruptedException e) {
// Fall through to exit thread
}
// Clear queue before terminating thread
processResourceQueue();
}
public void shutdown() {