Browse Source

QFX-5554 fix: 【冒烟】测试环境大数据量excel上传后点击保存无法保存成功

persist/jsy-11.0
Feng 4 years ago
parent
commit
39b51beaf8
  1. 6
      src/main/java/com/fanruan/fs/s3/repository/core/S3ResourceRepository.java

6
src/main/java/com/fanruan/fs/s3/repository/core/S3ResourceRepository.java

@ -308,6 +308,12 @@ public class S3ResourceRepository extends BaseResourceRepository {
return false;
}
@Override
protected boolean internalCopy(String origPath, String desPath) {
s3.copyObject(bucket, origPath, bucket, desPath);
return exist(desPath);
}
@Override
public void shutDown() {
s3.shutdown();

Loading…
Cancel
Save