ericproulx commented on code in PR #3825:
URL: https://github.com/apache/avro/pull/3825#discussion_r3819969852
##########
lang/ruby/lib/avro/protocol.rb:
##########
@@ -23,7 +23,7 @@ class ProtocolParseError < Avro::AvroError; end
attr_reader :name, :namespace, :types, :messages, :md5, :doc
def self.parse(protocol_string)
- json_data = MultiJson.load(protocol_string)
+ json_data = JSON.parse(protocol_string, create_additions: false,
quirks_mode: true)
Review Comment:
Thanks for pointing that out.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]