Skip to content

Commit

Permalink
Merge pull request #17853 from hstastna/Add_rename_queue_method
Browse files Browse the repository at this point in the history
Add new rename_queue method to VM operations
  • Loading branch information
agrare committed Aug 13, 2018
2 parents 68e9e3b + 29c1af1 commit 6f5b171
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/models/vm_or_template/operations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,24 @@ def rename(new_name)
raw_rename(new_name)
end

def rename_queue(userid, new_name)
task_opts = {
:action => "Renaming VM for user #{userid}",
:userid => userid
}

queue_opts = {
:class_name => self.class.name,
:method_name => 'rename',
:instance_id => id,
:role => 'ems_operations',
:zone => my_zone,
:args => [new_name]
}

MiqTask.generic_action_with_callback(task_opts, queue_opts)
end

private

#
Expand Down

0 comments on commit 6f5b171

Please sign in to comment.