Skip to content

Commit

Permalink
Remove @@character_set_server latin1 check
Browse files Browse the repository at this point in the history
  • Loading branch information
FinnIckler committed Jan 9, 2025
1 parent eb7f694 commit 49d22c5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/controllers/server_status_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ class MysqlSettingsCheck < StatusCheck
EXPECTED_MYSQL_SETTINGS = {
"@@innodb_ft_min_token_size" => 2,
"@@ft_min_word_len" => 2,
# The default server character set changed from latin1 to ut8mb4 in mysql 8.0, however our PHP didn't recognize it and failed to connect.
# We reverted it to latin1. The setting only affects the default charset for CREATE DATABASE statements that have no charset specified.
"@@character_set_server" => "latin1",
}.freeze

def label
Expand Down

0 comments on commit 49d22c5

Please sign in to comment.