# File lib/fog/volume/openstack.rb, line 19 def self.new(args = {}) @openstack_auth_uri = URI.parse(args[:openstack_auth_url]) if args[:openstack_auth_url] service = if inspect == 'Fog::Volume::OpenStack' Fog::Volume::OpenStack::V2.new(args) || Fog::Volume::OpenStack::V1.new(args) else super end service end