Remove ErrorTracker

Doesn't work with recent LiveView releases, and seems to be maintained
very slowly despite incoming PRs to fix the issues.
This commit is contained in:
Claudio Ortolina
2025-10-03 10:11:56 +03:00
parent f5bd7d0774
commit 57dfd3d33d
18 changed files with 4 additions and 101 deletions
-14
View File
@@ -84,20 +84,6 @@ if config_env() == :prod do
temp_store: :memory,
show_sensitive_data_on_connection_error: true
error_database_path =
System.get_env("ERROR_DATABASE_PATH") ||
raise """
environment variable ERROR_DATABASE_PATH is missing.
For example: /etc/music_library/music_library_errors.db
"""
config :music_library, MusicLibrary.ErrorRepo,
database: error_database_path,
# 16MB * pool_size = base memory usage
cache_size: -8000,
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5"),
show_sensitive_data_on_connection_error: true
background_database_path =
System.get_env("BACKGROUND_DATABASE_PATH") ||
raise """