diff --git a/webapp/src/Service/CheckConfigService.php b/webapp/src/Service/CheckConfigService.php index 3cb2ad7e47..3c2544bbe5 100644 --- a/webapp/src/Service/CheckConfigService.php +++ b/webapp/src/Service/CheckConfigService.php @@ -227,7 +227,7 @@ public function checkMysqlSettings(): ConfigCheckItem $desc = sprintf(" - `max_connections` is set to `%s`.\n", $vars['max_connections']); if ($vars['max_connections'] < 300) { $result = 'W'; - $desc .= sprintf("In our experience you need at least `300`, but better `1000` connections to prevent connection refusal during the contest.\n"); + $desc .= "In our experience you need at least `300`, but better `1000` connections to prevent connection refusal during the contest.\n"; } if ($vars['innodb_log_file_size'] < 10 * $max_inout) {