Commit dd1283e6 by xmh

重建特征池时修复,添åŠ数据库初始化脚本更新

1 parent 352655d5
...@@ -93,7 +93,7 @@ create table if not exists d_task ...@@ -93,7 +93,7 @@ create table if not exists d_task
"name" character varying(64) not null, "name" character varying(64) not null,
"type" int4 not null, "type" int4 not null,
"label_type" int4 not null, "label_type" int4 not null,
"account_id" int8 not null, "account_id" int8,
"contractor_manager_id" int8, "contractor_manager_id" int8,
"manager_id" int8, "manager_id" int8,
"assign_time" timestamp, "assign_time" timestamp,
......
...@@ -876,6 +876,8 @@ public class ReidService { ...@@ -876,6 +876,8 @@ public class ReidService {
try { try {
CompletableFuture<AlgResult> algResultCompletableFuture = matchClient.EASY_POOL_API.deletePool(poolName); CompletableFuture<AlgResult> algResultCompletableFuture = matchClient.EASY_POOL_API.deletePool(poolName);
AlgResult algResult = algResultCompletableFuture.get(); AlgResult algResult = algResultCompletableFuture.get();
CompletableFuture<AlgResult> emptyPool = matchClient.EASY_POOL_API.createEmptyPool(poolName);
emptyPool.get();
} catch (Exception ignore) { } catch (Exception ignore) {
} }
List<SubTask> subTasks = subTaskService.selectByExample(subTaskExample); List<SubTask> subTasks = subTaskService.selectByExample(subTaskExample);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!