summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-04-26 20:00:20 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-04-26 22:46:51 +0900
commit203eeeefddb3ae6c0e129ad9cd99da804c2cbaba (patch)
treea0292f95190b464c6a25a44450489a5a7dc50699
parent2c7d3b3a722c4636ab1e9d289cbca47ddd168d3e (diff)
Revert "disable shareable_constant_value for CI"
This reverts commit c647205c3eb1f17409a859149bb7d2ea38b43bed. Maybe the root issue was fixed by 7ac078e5b67ba752a755d6bd9c3a99999767fd3a
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4416
-rw-r--r--lib/time.rb11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/time.rb b/lib/time.rb
index 6a13993a36..bd20a1a8e9 100644
--- a/lib/time.rb
+++ b/lib/time.rb
@@ -480,17 +480,10 @@ class Time
t
end
-# TODO: CI failure on FreeBSD
-# http://rubyci.s3.amazonaws.com/freebsd12/ruby-master/log/20210425T203001Z.fail.html.gz
-# shareable_constant_value: none
-
- MonthValue = Ractor.make_shareable({ # :nodoc:
+ MonthValue = { # :nodoc:
'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6,
'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' =>10, 'NOV' =>11, 'DEC' =>12
- })
-
-# shareable_constant_value: literal
-
+ }
#
# Parses +date+ as date-time defined by RFC 2822 and converts it to a Time