Skip to content

Commit

Permalink
fix start_global_cache typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KaylaBrady committed Sep 27, 2024
1 parent 8a48e10 commit 4cbc9ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ config :mobile_app_backend, MobileAppBackendWeb.Endpoint,
# isolated fake processes
config :mobile_app_backend, start_stream_stores?: false

config :mobile_app_backend, stat_global_cache?: false
config :mobile_app_backend, start_global_cache?: false

# Print only warnings and errors during test
config :logger, level: :warning
Expand Down
2 changes: 1 addition & 1 deletion lib/mobile_app_backend/application.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule MobileAppBackend.Application do
Logger.add_handlers(:mobile_app_backend)

start_global_cache? =
Application.get_env(:mobile_app_backend, :stat_global_cache?, true)
Application.get_env(:mobile_app_backend, :start_global_cache?, true)

children =
[
Expand Down

0 comments on commit 4cbc9ab

Please sign in to comment.