Skip to content

Commit

Permalink
Merge pull request #11894 from gildub/private-scope
Browse files Browse the repository at this point in the history
Fix connection update - Openstack network manager
(cherry picked from commit eb9060a)

https://bugzilla.redhat.com/show_bug.cgi?id=1383162
  • Loading branch information
blomquisg authored and chessbyte committed Oct 19, 2016
1 parent 3488fa9 commit e6d1ecd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ def self.connection_options(cloud_tenant = nil)
connection_options
end

private

def connection_options(cloud_tenant = nil)
self.class.connection_options(cloud_tenant)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ def self.connection_options(cloud_tenant = nil)
connection_options[:tenant_name] = cloud_tenant.name if cloud_tenant
connection_options
end
private_class_method :connection_options

private

def connection_options(cloud_tenant = nil)
self.class.connection_options(cloud_tenant)
end
private :connection_options
end

0 comments on commit e6d1ecd

Please sign in to comment.