Skip to content

Commit

Permalink
Merge pull request #16711 from evertmulder/ResizeDisk_ReconfigureScreen
Browse files Browse the repository at this point in the history
Resize disk reconfigure screen
(cherry picked from commit 9134e2a)
  • Loading branch information
gmcculloug authored and simaishi committed Jun 1, 2018
1 parent 986f99e commit 9089d39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/models/mixins/supports_feature_mixin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ module SupportsFeatureMixin
:reboot_guest => 'Reboot Guest Operation',
:reconfigure => 'Reconfiguration',
:reconfigure_disks => 'Reconfigure Virtual Machines Disks',
:reconfigure_disksize => 'Reconfigure Virtual Machines Disk Size',
:refresh_network_interfaces => 'Refresh Network Interfaces for a Host',
:refresh_new_target => 'Refresh non-existing record',
:regions => 'Regions of a Provider',
Expand Down
1 change: 1 addition & 0 deletions app/models/vm_reconfigure_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def self.get_description(req_obj)
new_settings << "Total Processors: #{req_obj.options[:number_of_cpus].to_i}" unless req_obj.options[:number_of_cpus].blank?
new_settings << "Add Disks: #{req_obj.options[:disk_add].length}" unless req_obj.options[:disk_add].blank?
new_settings << "Remove Disks: #{req_obj.options[:disk_remove].length}" unless req_obj.options[:disk_remove].blank?
new_settings << "Resize Disks: #{req_obj.options[:disk_resize].length}" unless req_obj.options[:disk_resize].blank?
"#{request_class::TASK_DESCRIPTION} for: #{name} - #{new_settings.join(", ")}"
end

Expand Down

0 comments on commit 9089d39

Please sign in to comment.