]> review.fuel-infra Code Review - openstack-build/heat-build.git/commit
Convert Resource to separate action/status
authorSteven Hardy <shardy@redhat.com>
Fri, 14 Jun 2013 10:02:09 +0000 (11:02 +0100)
committerSteven Hardy <shardy@redhat.com>
Fri, 14 Jun 2013 12:44:04 +0000 (13:44 +0100)
commit7ef1344d0a978950035a17ec3fd8746dd57a2392
tree9066c08d325463aa586a9c68ca69ad2651f3030d
parent157223c4e9ed12f4137a7e05c1f493e35f6a59fa
Convert Resource to separate action/status

Next step in decoupling action/status

This adjusts the Resource DB columns, model and class to be consistent
with Event, and split action/status.  This also modifies the both APIs
to join the action/status to avoid changing the API (we can't change
the CFN one anyway and it's desirable to avoid breaking compatibility
with the ReST API, or needing a version bump for this simple change)

Change-Id: I02b56eb14045a058e67b9764d386530d555c339e
32 files changed:
heat/api/cfn/v1/stacks.py
heat/api/openstack/v1/events.py
heat/api/openstack/v1/resources.py
heat/db/sqlalchemy/migrate_repo/versions/019_resource_action_status.py [new file with mode: 0644]
heat/db/sqlalchemy/models.py
heat/engine/api.py
heat/engine/parser.py
heat/engine/resource.py
heat/engine/resources/autoscaling.py
heat/engine/resources/volume.py
heat/engine/template.py
heat/tests/test_api_cfn_v1.py
heat/tests/test_api_openstack_v1.py
heat/tests/test_autoscaling.py
heat/tests/test_cw_alarm.py
heat/tests/test_dbinstance.py
heat/tests/test_eip.py
heat/tests/test_engine_service.py
heat/tests/test_instance.py
heat/tests/test_instance_group.py
heat/tests/test_loadbalancer.py
heat/tests/test_metadata_refresh.py
heat/tests/test_parser.py
heat/tests/test_quantum.py
heat/tests/test_resource.py
heat/tests/test_s3.py
heat/tests/test_security_group.py
heat/tests/test_swift.py
heat/tests/test_user.py
heat/tests/test_volume.py
heat/tests/test_vpc.py
heat/tests/test_waitcondition.py