From a3e23096b31fe54a49a82731bd48813d9a85e4a9 Mon Sep 17 00:00:00 2001 From: Michal Migurski Date: Thu, 4 Feb 2021 11:27:10 -0800 Subject: [PATCH] Removed ENABLE_BOOTSNAP environment variable --- config/boot.rb | 2 +- docker-compose.yml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/config/boot.rb b/config/boot.rb index 630904bfc..988a5ddc4 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -1,4 +1,4 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) require "bundler/setup" # Set up gems listed in the Gemfile. -require "bootsnap/setup" if ENV.fetch("ENABLE_BOOTSNAP", "true") == "true" # Speed up boot time by caching expensive operations. +require "bootsnap/setup" # Speed up boot time by caching expensive operations. diff --git a/docker-compose.yml b/docker-compose.yml index 1111ad010..8f67212eb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,9 +14,6 @@ services: - web-images:/home/osm/images ports: - "3000:3000" - environment: - # https://github.com/Shopify/bootsnap/issues/262 - ENABLE_BOOTSNAP: 'false' command: bundle exec rails s -p 3000 -b '0.0.0.0' depends_on: - db -- 2.39.5