From 9f2fea094db661592fe22d69c3c3e3249138ff88 Mon Sep 17 00:00:00 2001 From: nineven Date: Fri, 28 Jan 2022 06:15:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fir_ser/api/utils/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fir_ser/api/utils/utils.py b/fir_ser/api/utils/utils.py index f205f74..b8e0f9e 100644 --- a/fir_ser/api/utils/utils.py +++ b/fir_ser/api/utils/utils.py @@ -206,6 +206,8 @@ def change_storage_and_change_advert_img(user_obj, new_storage_obj, clean_old_da def download_files_form_oss(storage_obj, org_file): with cache.lock("%s_%s" % ('download_files_form_oss', org_file), timeout=60 * 30): + if os.path.isfile(org_file): + return if storage_obj.download_file(os.path.basename(org_file), org_file + ".check.tmp"): if os.path.isfile(org_file) and os.path.exists(org_file + ".check.tmp"): os.remove(org_file)