Skip to content

Commit 93b8ff2

Browse files
committed
오류 수정 3차
1 parent 3d3d513 commit 93b8ff2

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

config/environments/production.rb

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
require "active_support/core_ext/integer/time"
22

33
Rails.application.configure do
4-
5-
gem "solid_queue", require: false
64
# Settings specified here will take precedence over those in config/application.rb.
75

86
# Code is not reloaded between requests.
@@ -45,10 +43,14 @@
4543
# Don't log any deprecations.
4644
config.active_support.report_deprecations = false
4745

48-
# Replace the default in-process memory cache store with a durable alternative.
49-
config.cache_store = :solid_cache_store
46+
# =====================================
47+
# [Cache / Job queue 설정]
48+
# =====================================
49+
50+
# ✅ 캐시 스토어를 memory_store 로 변경
51+
config.cache_store = :memory_store
5052

51-
# Replace the default in-process and non-durable queuing backend for Active Job.
53+
# ✅ solid_queue 관련 설정 완전 제거
5254
# config.active_job.queue_adapter = :solid_queue
5355
# config.solid_queue.connects_to = { database: { writing: :queue } }
5456

@@ -86,7 +88,6 @@
8688
#
8789
# Skip DNS rebinding protection for the default health check endpoint.
8890
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
89-
config.active_record.dump_schema_after_migration = false
9091

9192
# ================================
9293
# [gRPC 관련 파일 autoload 제외 설정]

0 commit comments

Comments
 (0)