From bb32364642c35a376cf4c7b00d3f4c4de459a62b Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 12 May 2017 11:49:12 -0400 Subject: [PATCH] don't cache yaml perhaps bootsnap has an issue with it --- config/boot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/boot.rb b/config/boot.rb index 3c685ced8c2..476a171155d 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -22,6 +22,6 @@ if ENV['RAILS_ENV'] != 'production' autoload_paths_cache: true, # Should we optimize ActiveSupport autoloads with cache? disable_trace: false, # Sets `RubyVM::InstructionSequence.compile_option = { trace_instruction: false }` compile_cache_iseq: is_mac, # Should compile Ruby code into ISeq cache? - compile_cache_yaml: is_mac # Should compile YAML into a cache? + compile_cache_yaml: false # Should compile YAML into a cache? ) end