sluice 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/CHANGELOG +4 -0
- data/README.md +1 -1
- data/lib/sluice/storage/s3/s3.rb +4 -4
- data/lib/sluice/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Zjk2NmI3NTI4Zjc5MjA2YWQ4MzEzMTA5MjQ3MWVhOTExNmU1ZWRhMQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YzcyY2VlYTNmMzBiMTNhOTUxY2VlMTRhMWU3MTNiZjM2ODMzMDNiNQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZGE4ZjU1NWY3YTU5ODE2ODFkNDgxZDg2Mjg1ZTYwYWUwMzk4ZmQ1MGYwMTQz
|
10
|
+
MjcxZGJkOTgyNmU2ZmZlNzk3Mzc4M2NlNTVmOGVmZTBiNTRiZWMzOWJmY2I1
|
11
|
+
MmYwZDNiNzI3MGUwN2M3NjA2ODBmY2VjM2EzYzg4YjE5MTI5MWM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjBhYTJmODNmOTI5MDkwNzg1ZjQwYjcxMjY5M2UyOTU3ZWI0NGU5NzZhYThj
|
14
|
+
YmRhYTcyNzc3MTFkNGVjMTU0ZGUyYThkNzQxOWE5Y2E2MzM5NzRiNGI5NDZl
|
15
|
+
NDMwOWY0ZmQ4ZjY3NGI1MTgwNWNkMzM4M2RmYjFlODU4YTJjMzM=
|
data/CHANGELOG
CHANGED
data/README.md
CHANGED
data/lib/sluice/storage/s3/s3.rb
CHANGED
@@ -523,7 +523,7 @@ module Sluice
|
|
523
523
|
retry_x(
|
524
524
|
Sluice::Storage::S3,
|
525
525
|
[:upload_file, s3, filepath, to_loc_or_dir.bucket, target],
|
526
|
-
RETRIES,
|
526
|
+
Sluice::Storage::S3::RETRIES,
|
527
527
|
" +/> #{target}",
|
528
528
|
"Problem uploading #{filepath}. Retrying.")
|
529
529
|
end
|
@@ -533,7 +533,7 @@ module Sluice
|
|
533
533
|
retry_x(
|
534
534
|
Sluice::Storage::S3,
|
535
535
|
[:download_file, s3, file, target],
|
536
|
-
RETRIES,
|
536
|
+
Sluice::Storage::S3::RETRIES,
|
537
537
|
" +/> #{target}",
|
538
538
|
"Problem downloading #{filepath}. Retrying.")
|
539
539
|
end
|
@@ -543,7 +543,7 @@ module Sluice
|
|
543
543
|
retry_x(
|
544
544
|
file,
|
545
545
|
[:copy, to_loc_or_dir.bucket, target],
|
546
|
-
RETRIES,
|
546
|
+
Sluice::Storage::S3::RETRIES,
|
547
547
|
" +-> #{to_loc_or_dir.bucket}/#{target}",
|
548
548
|
"Problem copying #{filepath}. Retrying.")
|
549
549
|
end
|
@@ -553,7 +553,7 @@ module Sluice
|
|
553
553
|
retry_x(
|
554
554
|
file,
|
555
555
|
[:destroy],
|
556
|
-
RETRIES,
|
556
|
+
Sluice::Storage::S3::RETRIES,
|
557
557
|
" x #{source}",
|
558
558
|
"Problem destroying #{filepath}. Retrying.")
|
559
559
|
end
|
data/lib/sluice/version.rb
CHANGED