From 39b51beaf886f54396ba89666fa8c04217098dc2 Mon Sep 17 00:00:00 2001 From: Feng Date: Tue, 30 Mar 2021 11:48:20 +0800 Subject: [PATCH 1/2] =?UTF-8?q?QFX-5554=20fix:=20=E3=80=90=E5=86=92?= =?UTF-8?q?=E7=83=9F=E3=80=91=E6=B5=8B=E8=AF=95=E7=8E=AF=E5=A2=83=E5=A4=A7?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=87=8Fexcel=E4=B8=8A=E4=BC=A0=E5=90=8E?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E4=BF=9D=E5=AD=98=E6=97=A0=E6=B3=95=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fanruan/fs/s3/repository/core/S3ResourceRepository.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/fanruan/fs/s3/repository/core/S3ResourceRepository.java b/src/main/java/com/fanruan/fs/s3/repository/core/S3ResourceRepository.java index f754762..7c23b43 100644 --- a/src/main/java/com/fanruan/fs/s3/repository/core/S3ResourceRepository.java +++ b/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(); From cc8efcd60344f2011db98b52ea78c5dc88b0b6d4 Mon Sep 17 00:00:00 2001 From: Feng Date: Tue, 30 Mar 2021 13:56:16 +0800 Subject: [PATCH 2/2] =?UTF-8?q?QFX-5554=20fix:=20=E3=80=90=E5=86=92?= =?UTF-8?q?=E7=83=9F=E3=80=91=E6=B5=8B=E8=AF=95=E7=8E=AF=E5=A2=83=E5=A4=A7?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=87=8Fexcel=E4=B8=8A=E4=BC=A0=E5=90=8E?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E4=BF=9D=E5=AD=98=E6=97=A0=E6=B3=95=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin.xml b/plugin.xml index c9fd10e..ba059a1 100644 --- a/plugin.xml +++ b/plugin.xml @@ -5,12 +5,13 @@ com.fanruan.fs yes no - 1.2.5 + 1.2.6 10.0 2021-03-11 richie [2021-01-28]修复备份还原S3报警告问题。
[2021-01-24]修复定时调度结果文件预览失败。
[2021-01-20]正式作为官方插件维护。