Fix test failure for parallel testing

This commit is contained in:
Hiroshi SHIBATA 2021-07-27 17:34:13 +09:00
Родитель b875a85c53
Коммит 6656309fe2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
2 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -101,9 +101,3 @@ require_relative 'uri/ldap'
require_relative 'uri/ldaps' require_relative 'uri/ldaps'
require_relative 'uri/mailto' require_relative 'uri/mailto'
require_relative 'uri/ws' require_relative 'uri/ws'
module URI
INITIAL_SCHEMES = scheme_list
private_constant :INITIAL_SCHEMES
Ractor.make_shareable(INITIAL_SCHEMES) if defined?(Ractor)
end

Просмотреть файл

@ -79,6 +79,10 @@ module URI
}.to_h }.to_h
end end
INITIAL_SCHEMES = scheme_list
private_constant :INITIAL_SCHEMES
Ractor.make_shareable(INITIAL_SCHEMES) if defined?(Ractor)
# #
# Construct a URI instance, using the scheme to detect the appropriate class # Construct a URI instance, using the scheme to detect the appropriate class
# from +URI.scheme_list+. # from +URI.scheme_list+.