mirror of
https://github.com/dataease/dataease.git
synced 2025-02-25 03:52:59 +08:00
fix: 抽取数据的错误日志
This commit is contained in:
parent
ae32cba668
commit
f527eefef0
@ -58,7 +58,7 @@ public class DataSetTableTaskService {
|
|||||||
public DatasetTableTask save(DataSetTaskRequest dataSetTaskRequest) throws Exception {
|
public DatasetTableTask save(DataSetTaskRequest dataSetTaskRequest) throws Exception {
|
||||||
checkName(dataSetTaskRequest);
|
checkName(dataSetTaskRequest);
|
||||||
DatasetTableTask datasetTableTask = dataSetTaskRequest.getDatasetTableTask();
|
DatasetTableTask datasetTableTask = dataSetTaskRequest.getDatasetTableTask();
|
||||||
if(!datasetTableTask.getType().equalsIgnoreCase("add_scope")){
|
if(datasetTableTask.getType().equalsIgnoreCase("add_scope")){
|
||||||
dataSetTableService.saveIncrementalConfig(dataSetTaskRequest.getDatasetTableIncrementalConfig());
|
dataSetTableService.saveIncrementalConfig(dataSetTaskRequest.getDatasetTableIncrementalConfig());
|
||||||
}
|
}
|
||||||
// check
|
// check
|
||||||
|
@ -583,7 +583,7 @@ public class ExtractDataService {
|
|||||||
if (jobStatus.getStatusDescription().equals("Finished")) {
|
if (jobStatus.getStatusDescription().equals("Finished")) {
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
DataEaseException.throwException((jobStatus.getErrorDescription()));
|
DataEaseException.throwException((jobStatus.getLoggingString()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
width="50%"
|
width="50%"
|
||||||
class="dialog-css"
|
class="dialog-css"
|
||||||
>
|
>
|
||||||
<span>{{ error_massage }}</span>
|
<span class="err-msg">{{ error_massage }}</span>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button size="mini" @click="show_error_massage = false">{{ $t('dataset.close') }}</el-button>
|
<el-button size="mini" @click="show_error_massage = false">{{ $t('dataset.close') }}</el-button>
|
||||||
</span>
|
</span>
|
||||||
@ -176,6 +176,16 @@ export default {
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.err-msg{
|
||||||
|
font-size: 12px;
|
||||||
|
word-break:normal;
|
||||||
|
width:auto;
|
||||||
|
display:block;
|
||||||
|
white-space:pre-wrap;
|
||||||
|
word-wrap : break-word ;
|
||||||
|
overflow: hidden ;
|
||||||
|
}
|
||||||
|
|
||||||
span{
|
span{
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user