fix: 解决数据集保存一直转圈的问题

This commit is contained in:
junjun
2025-04-25 20:06:48 +08:00
committed by Junjun
parent 9c81a7220b
commit a758022e38

View File

@@ -88,7 +88,6 @@ public class DatasetGroupManage {
@Transactional
public DatasetGroupInfoDTO save(DatasetGroupInfoDTO datasetGroupInfoDTO, boolean rename, boolean encode) throws Exception {
lock.lock();
try {
boolean isCreate;
// 用于重命名获取pid
@@ -151,8 +150,6 @@ public class DatasetGroupManage {
return datasetGroupInfoDTO;
} catch (Exception e) {
DEException.throwException(e.getMessage());
} finally {
lock.unlock();
}
return null;
}