summaryrefslogtreecommitdiff
path: root/Remote
diff options
context:
space:
mode:
Diffstat (limited to 'Remote')
-rw-r--r--Remote/S3.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Remote/S3.hs b/Remote/S3.hs
index c8092a4c9..38cda29c4 100644
--- a/Remote/S3.hs
+++ b/Remote/S3.hs
@@ -348,9 +348,7 @@ removeExportS3 r info _k loc =
checkPresentExportS3 :: Remote -> S3Info -> Key -> ExportLocation -> Annex Bool
checkPresentExportS3 r info _k loc =
- catchNonAsync go (\e -> warning (show e) >> return False)
- where
- go = withS3Handle (config r) (gitconfig r) (uuid r) $ \h -> do
+ withS3Handle (config r) (gitconfig r) (uuid r) $ \h -> do
checkKeyHelper info h (T.pack $ bucketExportLocation info loc)
-- S3 has no move primitive; copy and delete.