aws 2.5.4 → 2.5.5
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/lib/s3/s3_interface.rb +1 -1
- metadata +1 -1
data/lib/s3/s3_interface.rb
CHANGED
@@ -334,7 +334,7 @@ module Aws
|
|
334
334
|
# ]
|
335
335
|
# }
|
336
336
|
def incrementally_list_bucket(bucket, options={}, headers={}, &block)
|
337
|
-
internal_options =
|
337
|
+
internal_options = (options.map {|k,v| [k.to_sym, v] }).inject({}) {|h, ar| h[ar[0]] = ar[1]; h}
|
338
338
|
begin
|
339
339
|
internal_bucket = bucket.dup
|
340
340
|
unless internal_options.nil? || internal_options.empty?
|