Skip to content

Commit c5ec2fb

Browse files
committed
Add compatibilty for old array of interfaces.
1 parent 2f45a6b commit c5ec2fb

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

lib/rubydns.rb

+13-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
require_relative "rubydns/version"
1010
require_relative "rubydns/server"
1111

12+
# @namespace
1213
module RubyDNS
1314
# Backwards compatibility:
1415
Resolver = Async::DNS::Resolver
@@ -25,7 +26,17 @@ def self.run(*arguments, server_class: Server, **options, &block)
2526
end
2627

2728
# @deprecated Use {RubyDNS.run} instead.
28-
def self.run_server(...)
29-
self.run(...)
29+
def self.run_server(*arguments, **options, &block)
30+
if arguments.first.is_a?(Array)
31+
warn "Using an array of interfaces is deprecated. Please use `Async::DNS::Endpoint` instead.", uplevel: 1
32+
33+
endpoints = arguments[0].map do |specification|
34+
IO::Endpoint.public_send(*specification)
35+
end
36+
37+
arguments[0] = IO::Endpoint.composite(*endpoints)
38+
end
39+
40+
self.run(*arguments, **options, &block)
3041
end
3142
end

0 commit comments

Comments
 (0)