Merge pull request #62320 from seandhaynes/shaynes/dictionary-source-type

Fix small typo in Dictionary source loader
This commit is contained in:
divanik 2024-04-08 14:13:06 +02:00 committed by GitHub
commit 1e8105fa7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1187,7 +1187,7 @@ private:
else
{
auto result = std::chrono::system_clock::now() + std::chrono::seconds(calculateDurationWithBackoff(rnd_engine, error_count));
LOG_TRACE(log, "Supposed update time for unspecified object is {} (backoff, {} errors.", to_string(result), error_count);
LOG_TRACE(log, "Supposed update time for unspecified object is {} (backoff, {} errors)", to_string(result), error_count);
return result;
}
}