From a7a8d2c0d2df3f6a920ca1f81cbdaea254d6de6e Mon Sep 17 00:00:00 2001 From: Dhamo1107 Date: Sat, 1 Feb 2025 11:30:51 +0530 Subject: [PATCH] Fix: Update namespace from Util to OrchestrationUtil in OpenStack Orchestration --- lib/fog/openstack/orchestration/requests/create_stack.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/openstack/orchestration/requests/create_stack.rb b/lib/fog/openstack/orchestration/requests/create_stack.rb index 9377719fc..9352dee8e 100644 --- a/lib/fog/openstack/orchestration/requests/create_stack.rb +++ b/lib/fog/openstack/orchestration/requests/create_stack.rb @@ -37,7 +37,7 @@ def create_stack(arg1, arg2 = nil) # and replaces it with :template. # see https://github.com/openstack-infra/shade/blob/master/shade/openstackcloud.py#L1201 # see https://developer.openstack.org/api-ref/orchestration/v1/index.html#create-stack - file_resolver = Util::RecursiveHotFileLoader.new(options[:template] || options[:template_url], options[:files]) + file_resolver = OrchestrationUtil::RecursiveHotFileLoader.new(options[:template] || options[:template_url], options[:files]) options[:template] = file_resolver.template options[:files] = file_resolver.files unless file_resolver.files.empty?