This is an automated email from the ASF dual-hosted git repository.

tjwp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 224e2bb  Remove redundant freeze to fix Ruby build
224e2bb is described below

commit 224e2bb3bae5ea22a38689b665ff730bae6a796b
Author: Tim Perkins <[email protected]>
AuthorDate: Sat May 8 08:03:07 2021 -0400

    Remove redundant freeze to fix Ruby build
---
 lang/ruby/lib/avro/schema.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/ruby/lib/avro/schema.rb b/lang/ruby/lib/avro/schema.rb
index 5febf12..eba379f 100644
--- a/lang/ruby/lib/avro/schema.rb
+++ b/lang/ruby/lib/avro/schema.rb
@@ -39,7 +39,7 @@ module Avro
 
     DEFAULT_VALIDATE_OPTIONS = { recursive: true, encoded: false }.freeze
 
-    DECIMAL_LOGICAL_TYPE = 'decimal'.freeze
+    DECIMAL_LOGICAL_TYPE = 'decimal'
 
     def self.parse(json_string)
       real_parse(MultiJson.load(json_string), {})

Reply via email to