From b819899b96b0ad017c3c9cdb2a4785555ed80270 Mon Sep 17 00:00:00 2001 From: Khoa Nguyen Date: Wed, 14 Jun 2017 11:43:39 +1000 Subject: [PATCH] fix https://github.com/fog/fog-aws/issues/369 --- lib/fog/aws/parsers/storage/get_bucket.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/aws/parsers/storage/get_bucket.rb b/lib/fog/aws/parsers/storage/get_bucket.rb index 17e35fcae..2d53f6441 100644 --- a/lib/fog/aws/parsers/storage/get_bucket.rb +++ b/lib/fog/aws/parsers/storage/get_bucket.rb @@ -35,7 +35,7 @@ module Fog end when 'LastModified' @object['LastModified'] = Time.parse(value) - when 'Marker', 'Name' + when 'Marker', 'Name', 'NextContinuationToken' @response[name] = value when 'MaxKeys' @response['MaxKeys'] = value.to_i