Removed accidentally duplicated code

This was causing two instances of the build manager to run.
This commit is contained in:
CalDescent 2021-08-20 20:17:02 +01:00
parent 095083bcfb
commit b2c0915a71

View File

@ -69,11 +69,6 @@ public class ArbitraryDataCleanupManager extends Thread {
public void run() {
Thread.currentThread().setName("Arbitrary Data Cleanup Manager");
// Use a fixed thread pool to execute the arbitrary data build actions (currently just a single thread)
// This can be expanded to have multiple threads processing the build queue when needed
ExecutorService arbitraryDataBuildExecutor = Executors.newFixedThreadPool(1);
arbitraryDataBuildExecutor.execute(new ArbitraryDataBuildManager());
// Paginate queries when fetching arbitrary transactions
final int limit = 100;
int offset = 0;