sluice-jason 0.0.1 → 0.2.2
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 +4 -4
- data/lib/sluice/storage/s3/s3.rb +4 -4
- data/lib/sluice/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a038c66a320f8437619919b120ea371a75772051
|
4
|
+
data.tar.gz: d510814f469ee5d91897809a028f9857947077f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa2af32045ed6fe2f070fb8eaf79c58b4211cc6dbaed7f6ec01fe87993d2a4b7784ceb7c85a06fef89859d95b37261b9b0a219273a207113c525296e7cfc25a3
|
7
|
+
data.tar.gz: 155c43b7323a162b18fc5723328d2e23a1bdff197a704ed4f3b3ec69f796d61d490be1e166a1b30c1838411618b01441acc434a7c26771237d00e55678127dd3
|
data/lib/sluice/storage/s3/s3.rb
CHANGED
@@ -539,7 +539,7 @@ module Sluice
|
|
539
539
|
retry_x(
|
540
540
|
Sluice::Storage::S3,
|
541
541
|
[:upload_file, s3, filepath, to_loc_or_dir.bucket, target],
|
542
|
-
|
542
|
+
RETRIES,
|
543
543
|
" +/> #{target}",
|
544
544
|
"Problem uploading #{filepath}. Retrying.")
|
545
545
|
end
|
@@ -549,7 +549,7 @@ module Sluice
|
|
549
549
|
retry_x(
|
550
550
|
Sluice::Storage::S3,
|
551
551
|
[:download_file, s3, file, target],
|
552
|
-
|
552
|
+
RETRIES,
|
553
553
|
" +/> #{target}",
|
554
554
|
"Problem downloading #{filepath}. Retrying.")
|
555
555
|
end
|
@@ -559,7 +559,7 @@ module Sluice
|
|
559
559
|
retry_x(
|
560
560
|
file,
|
561
561
|
[:copy, to_loc_or_dir.bucket, target],
|
562
|
-
|
562
|
+
RETRIES,
|
563
563
|
" +-> #{to_loc_or_dir.bucket}/#{target}",
|
564
564
|
"Problem copying #{filepath}. Retrying.")
|
565
565
|
end
|
@@ -569,7 +569,7 @@ module Sluice
|
|
569
569
|
retry_x(
|
570
570
|
file,
|
571
571
|
[:destroy],
|
572
|
-
|
572
|
+
RETRIES,
|
573
573
|
" x #{source}",
|
574
574
|
"Problem destroying #{filepath}. Retrying.")
|
575
575
|
end
|
data/lib/sluice/version.rb
CHANGED