Fix comments at the 'save' method of objects.Instance

* Remove unnecessary parameter description
* Fix a format of the comments
* Fix a wrong method name (self.obj_what_changed())

TrivialFix
Change-Id: If5db63bf1b63ca8f1ef7b73c5f798122275b7cd3
This commit is contained in:
Takashi NATSUME
2018-04-09 22:50:52 +09:00
parent 8b081453c5
commit ecea14d4a9
+6 -8
View File
@@ -711,18 +711,16 @@ class Instance(base.NovaPersistentObject, base.NovaObject,
"""Save updates to this instance
Column-wise updates will be made based on the result of
self.what_changed(). If expected_task_state is provided,
self.obj_what_changed(). If expected_task_state is provided,
it will be checked against the in-database copy of the
instance before updates are made.
:param:context: Security context
:param:expected_task_state: Optional tuple of valid task states
for the instance to be in
:param:expected_vm_state: Optional tuple of valid vm states
for the instance to be in
:param expected_vm_state: Optional tuple of valid vm states
for the instance to be in
:param expected_task_state: Optional tuple of valid task states
for the instance to be in
:param admin_state_reset: True if admin API is forcing setting
of task_state/vm_state
of task_state/vm_state
"""
# Store this on the class because _cell_name_blocks_sync is useless
# after the db update call below.