Delete the useless API of heat

The results of "Output-show" and "Output-list" can be obtained in the "stack_get".
And in the horizon "Output-show" and "Output-list" these two API is not used at all.

Change-Id: I787b91b7e1795d510e534452feec89cb2c09cf87
This commit is contained in:
root 2016-07-14 14:04:39 +08:00 committed by zhaozhilong
parent 107488f2f5
commit 63b3a2a2a6

View File

@ -182,14 +182,6 @@ def snapshot_delete(request, stack_id, snapshot_id):
return heatclient(request).stacks.snapshot_delete(stack_id, snapshot_id)
def output_list(request, stack_id):
return heatclient(request).stacks.output_list(stack_id)
def output_show(request, stack_id):
return heatclient(request).stacks.output_show(stack_id)
def events_list(request, stack_name):
return heatclient(request).events.list(stack_name)