formatting
Build on RHEL9 docker image / build (push) Successful in 3m48s
Build on RHEL8 docker image / build (push) Successful in 4m40s
Run Simulator Tests on local RHEL8 / build (push) Failing after 8m46s
Run Simulator Tests on local RHEL9 / build (push) Failing after 13m24s

This commit is contained in:
2026-08-06 11:10:01 +02:00
parent d7cc22f7ef
commit 281943eb69
5 changed files with 15 additions and 28 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ std::pair<std::string, uint16_t> ParseHostPort(const std::string &s) {
std::string to_lower(const std::string &s) {
std::string result = s;
std::transform(result.begin(), result.end(), result.begin(),
[](unsigned char c) { return std::tolower(c); });
[](unsigned char c) { return std::tolower(c); });
return result;
}