1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

Modified the parser so that it can parse the Status filed while describing a change set

This commit is contained in:
Nilanjan Roy 2016-11-24 15:47:44 +02:00
parent c4b619d0f4
commit 0f3b52ebc8

View file

@ -62,7 +62,7 @@ module Fog
def end_element(name)
case name
when 'ChangeSetId', 'ChangeSetName', 'Description', 'ExecutionStatus', 'StackId', 'StackName', 'StatusReason'
when 'ChangeSetId', 'ChangeSetName', 'Description', 'ExecutionStatus', 'StackId', 'StackName', 'StatusReason', 'Status'
@response[name] = value
when 'CreationTime'
@response[name] = Time.parse(value)