What if I just strip quotes

This commit is contained in:
Konstantin Bogdanov 2024-08-28 01:28:27 +02:00
parent f675bd2141
commit d4b146d6dd
No known key found for this signature in database

View File

@ -210,7 +210,7 @@ namespace
{
UInt64 stringToMaxThreads(const String & str)
{
if (startsWith(str, "auto"))
if (startsWith(str, "auto") || startsWith(str, "'auto"))
return 0;
return parseFromString<UInt64>(str);
}