Merge "Use native heat's WaitCondition in volume tests"

This commit is contained in:
Zuul 2024-04-23 03:01:00 +00:00 committed by Gerrit Code Review
commit c16ede389a
2 changed files with 7 additions and 9 deletions

View File

@ -96,12 +96,11 @@ resources:
type: OS::Heat::UpdateWaitConditionHandle
wait_condition:
type: AWS::CloudFormation::WaitCondition
type: OS::Heat::WaitCondition
depends_on: instance
properties:
Count: 1
Handle: { get_resource: wait_handle }
Timeout: { get_param: timeout }
handle: { get_resource: wait_handle }
timeout: { get_param: timeout }
outputs:
@ -122,4 +121,4 @@ outputs:
testfile_data:
description: Contents of /mnt/testfile from the mounted volume
value: { get_attr: ['wait_condition', 'Data'] }
value: { get_attr: ['wait_condition', 'data'] }

View File

@ -106,12 +106,11 @@ resources:
type: OS::Heat::UpdateWaitConditionHandle
wait_condition:
type: AWS::CloudFormation::WaitCondition
type: OS::Heat::WaitCondition
depends_on: instance
properties:
Count: 1
Handle: { get_resource: wait_handle }
Timeout: { get_param: timeout }
handle: { get_resource: wait_handle }
timeout: { get_param: timeout }
outputs: