about summary refs log tree commit diff
path: root/lib/tasks/db.rake
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2020-12-07 09:35:37 -0600
committerStarfall <us@starfall.systems>2020-12-07 09:35:37 -0600
commit0f6d41052652c4fee87a19900795c8588d9a2174 (patch)
treea9440e6aa871459b4892eddcf5a72ae8d53990ba /lib/tasks/db.rake
parentd085d49922b2ae32201caf5751344f5d88ccae4b (diff)
parent25f725d67a6d2542cd586ab7c56baca572eb4f88 (diff)
Merge branch 'glitch' into main
Diffstat (limited to 'lib/tasks/db.rake')
-rw-r--r--lib/tasks/db.rake7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake
index 199155107..f6c9c7eec 100644
--- a/lib/tasks/db.rake
+++ b/lib/tasks/db.rake
@@ -51,8 +51,11 @@ namespace :db do
   task :post_migration_hook do
     at_exit do
       unless %w(C POSIX).include?(ActiveRecord::Base.connection.execute('SELECT datcollate FROM pg_database WHERE datname = current_database();').first['datcollate'])
-        Rails.logger.warn 'WARNING: Your database is using an unsafe collation setting, which might result in index corruption.'
-        Rails.logger.warn 'WARNING: See https://docs.joinmastodon.org/admin/troubleshooting/index-corruption/#am-i-affected'
+        warn <<~WARNING
+          Your database collation is susceptible to index corruption.
+            (This warning does not indicate that index corruption has occured and can be ignored)
+            (To learn more, visit: https://docs.joinmastodon.org/admin/troubleshooting/index-corruption/)
+        WARNING
       end
     end
   end