We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sprintf
1 parent e038a95 commit b42218dCopy full SHA for b42218d
webapp/src/Service/CheckConfigService.php
@@ -227,7 +227,7 @@ public function checkMysqlSettings(): ConfigCheckItem
227
$desc = sprintf(" - `max_connections` is set to `%s`.\n", $vars['max_connections']);
228
if ($vars['max_connections'] < 300) {
229
$result = 'W';
230
- $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";
231
}
232
233
if ($vars['innodb_log_file_size'] < 10 * $max_inout) {
0 commit comments