Skip to content

Commit 80d4dfd

Browse files
authored
feat: 修复清洗任务创建 (#207)
1 parent c7ee10b commit 80d4dfd

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

backend/services/data-cleaning-service/src/main/java/com/datamate/cleaning/application/CleaningTaskService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ public void executeTask(String taskId) {
212212
private void prepareTask(CleaningTaskDto task, List<OperatorInstanceDto> instances) {
213213
List<OperatorDto> allOperators = operatorRepo.findAllOperators();
214214
Map<String, OperatorDto> defaultSettings = allOperators.stream()
215-
.filter(operatorDto -> StringUtils.isNotBlank(operatorDto.getSettings()))
216215
.collect(Collectors.toMap(OperatorDto::getId, Function.identity()));
217216

218217
TaskProcess process = new TaskProcess();

0 commit comments

Comments
 (0)