sluice 0.1.3 → 0.1.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.
- data/CHANGELOG +4 -0
- data/lib/sluice/storage/s3.rb +1 -1
- data/lib/sluice.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/sluice/storage/s3.rb
CHANGED
|
@@ -33,7 +33,7 @@ module Sluice
|
|
|
33
33
|
CONCURRENCY = 10 # Threads
|
|
34
34
|
RETRIES = 3 # Attempts
|
|
35
35
|
RETRY_WAIT = 10 # Seconds
|
|
36
|
-
TIMEOUT_WAIT =
|
|
36
|
+
TIMEOUT_WAIT = 1800 # 30 mins should let even large files upload. +1 https://github.com/snowplow/sluice/issues/7 if this is insufficient or excessive
|
|
37
37
|
|
|
38
38
|
# Aliases for Contracts
|
|
39
39
|
FogStorage = Fog::Storage::AWS::Real
|
data/lib/sluice.rb
CHANGED