Skip to content

Commit

Permalink
[VNC API server] Fix method prototype
Browse files Browse the repository at this point in the history
Patch [1] introduced a bug in the prototype of the method
'dbe_update_notification' of vnc_cfg_types.VirtualNetworkServer
class.

[1] ea8f69e#diff-dc6e9283bf4340c308768d795dbc8a46R1247

Change-Id: I3c532a08b1300caa1e95e2b4062edb486ada3f95
Closes-bug: #1611778
  • Loading branch information
Édouard Thuleau committed Aug 10, 2016
1 parent 8517c4c commit dc7a0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/api-server/vnc_cfg_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ def dbe_create_notification(cls, obj_ids, obj_dict):
# end dbe_create_notification

@classmethod
def dbe_update_notification(cls, obj_ids, new_obj_dict):
def dbe_update_notification(cls, obj_ids):
cls.addr_mgmt.net_update_notify(obj_ids)
# end dbe_update_notification

Expand Down

0 comments on commit dc7a0b6

Please sign in to comment.