Merge "Don't eager load raw_template in a few places"
This commit is contained in:
commit
cfbc624b75
@ -685,7 +685,7 @@ def stack_update(context, stack_id, values, exp_trvsl=None):
|
||||
|
||||
|
||||
def stack_delete(context, stack_id):
|
||||
s = stack_get(context, stack_id)
|
||||
s = stack_get(context, stack_id, eager_load=False)
|
||||
if not s:
|
||||
raise exception.NotFound(_('Attempt to delete a stack with id: '
|
||||
'%(id)s %(msg)s') % {
|
||||
@ -752,11 +752,11 @@ def stack_lock_release(context, stack_id, engine_id):
|
||||
|
||||
|
||||
def stack_get_root_id(context, stack_id):
|
||||
s = stack_get(context, stack_id)
|
||||
s = stack_get(context, stack_id, eager_load=False)
|
||||
if not s:
|
||||
return None
|
||||
while s.owner_id:
|
||||
s = stack_get(context, s.owner_id)
|
||||
s = stack_get(context, s.owner_id, eager_load=False)
|
||||
return s.id
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user