Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure Openstack uses its own CinderManager #242

Merged
merged 3 commits into from
Apr 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/models/manageiq/providers/openstack/cloud_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ManageIQ::Providers::Openstack::CloudManager < ManageIQ::Providers::CloudM
:class_name => "ManageIQ::Providers::StorageManager",
:autosave => true

include CinderManagerMixin
include ManageIQ::Providers::Openstack::CinderManagerMixin
include SwiftManagerMixin
include ManageIQ::Providers::Openstack::ManagerMixin
include ManageIQ::Providers::Openstack::IdentitySyncMixin
Expand Down Expand Up @@ -77,7 +77,7 @@ def ensure_network_manager

def ensure_cinder_manager
return false if cinder_manager
build_cinder_manager(:type => 'ManageIQ::Providers::StorageManager::CinderManager')
build_cinder_manager(:type => 'ManageIQ::Providers::Openstack::StorageManager::CinderManager')
true
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def initialize_inventory_collections

add_inventory_collections(cloud,
%i(
vms
availability_zones
hardwares
cloud_tenants
Expand Down
Loading