Skip to content

Commit

Permalink
Remove session arg from sm_backend_conf_update
Browse files Browse the repository at this point in the history
Fixes bug 915108

Change-Id: Ic22bf5aa3d68ea59692ebe05d1b0b79757c70b52
  • Loading branch information
bcwaldon committed Jan 27, 2012
1 parent cefc979 commit e7862ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/db/sqlalchemy/api.py
Expand Up @@ -4110,7 +4110,7 @@ def sm_backend_conf_update(context, sm_backend_id, values):
_("No backend config with id %(sm_backend_id)s") % locals())

backend_conf.update(values)
backend_conf.save(session=session)
backend_conf.save()
return backend_conf


Expand Down

0 comments on commit e7862ea

Please sign in to comment.