Remove redundant configuration (identical to defaults)

This commit is contained in:
Claudio Ortolina
2026-03-13 16:22:58 +00:00
parent 002c81d3b8
commit bba1b1eabc
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -3,7 +3,6 @@ import Config
# Configure your database # Configure your database
config :music_library, MusicLibrary.Repo, config :music_library, MusicLibrary.Repo,
database: Path.expand("../data/music_library_dev.db", __DIR__), database: Path.expand("../data/music_library_dev.db", __DIR__),
cache_size: -64_000,
pool_size: 10, pool_size: 10,
stacktrace: true, stacktrace: true,
show_sensitive_data_on_connection_error: true show_sensitive_data_on_connection_error: true
-2
View File
@@ -38,7 +38,6 @@ end
config :music_library, MusicLibrary.Repo, config :music_library, MusicLibrary.Repo,
auto_vacuum: :incremental, auto_vacuum: :incremental,
temp_store: :memory,
load_extensions: [ load_extensions: [
MusicLibrary.Repo.extension_path("unicode"), MusicLibrary.Repo.extension_path("unicode"),
MusicLibrary.Repo.extension_path("vec0") MusicLibrary.Repo.extension_path("vec0")
@@ -100,7 +99,6 @@ if config_env() == :prod do
# 128MB * pool_size = base memory usage # 128MB * pool_size = base memory usage
cache_size: -128_000, cache_size: -128_000,
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5"), pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5"),
temp_store: :memory,
show_sensitive_data_on_connection_error: false show_sensitive_data_on_connection_error: false
background_database_path = background_database_path =