Skip to content
Snippets Groups Projects

AI-6156 - calling URI.open via Kernel#open is deprecated

Merged AI-6156 - calling URI.open via Kernel#open is deprecated
1 unresolved thread
Merged Steve Traylen requested to merge depre into master
1 unresolved thread
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -93,7 +93,7 @@ class LandbClient
def get_all_operations_and_arguments
hash = {}
nok = Nokogiri::XML(open(@@config["wsdl"]))
nok = Nokogiri::XML(URI.open(@@config["wsdl"]))
nok.xpath('wsdl:definitions/wsdl:binding/wsdl:operation').each do |action|
action.children.each do |child_node|
next unless child_node.element? && child_node.name == "input"
Loading