We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd07cd commit 6bcdfebCopy full SHA for 6bcdfeb
ruby/lib/core/uri.rb
@@ -27,13 +27,13 @@ class AMQP < Generic
27
# @return [String] The AMQP address is the {#path} stripped of any leading "/"
28
def amqp_address() path[0] == "/" ? path[1..-1] : path; end
29
end
30
- @@schemes['AMQP'] = AMQP
+ scheme_list['AMQP'] = AMQP
31
32
# AMQPS URI scheme for the AMQP protocol over TLS
33
class AMQPS < AMQP
34
DEFAULT_PORT = 5671
35
36
- @@schemes['AMQPS'] = AMQPS
+ scheme_list['AMQPS'] = AMQPS
37
38
39
module Qpid::Proton
0 commit comments