Browse Source

Merge pull request #7803 from YevhenBondarenko/fix/bulk-import-test

[3.4.3]fixed bulk import test infinite await
pull/7812/head
Andrew Shvayka 4 years ago
committed by GitHub
parent
commit
6b53b609a3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      application/src/main/java/org/thingsboard/server/service/sync/ie/importing/csv/AbstractBulkImportService.java

2
application/src/main/java/org/thingsboard/server/service/sync/ie/importing/csv/AbstractBulkImportService.java

@ -87,7 +87,7 @@ public abstract class AbstractBulkImportService<E extends HasId<? extends Entity
@Autowired
private EntityActionService entityActionService;
private static ThreadPoolExecutor executor;
private ThreadPoolExecutor executor;
@PostConstruct
private void initExecutor() {

Loading…
Cancel
Save