1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 12:06:01 +01:00

libstore: Remove the unnecessary 'error: ' prefix in warning message

This commit is contained in:
Sergei Zimmerman 2025-10-16 21:33:42 +03:00
parent 33e94fe19f
commit e7047fde25
No known key found for this signature in database

View file

@ -90,7 +90,7 @@ public:
try { try {
return getCredentialsRaw(profile); return getCredentialsRaw(profile);
} catch (AwsAuthError & e) { } catch (AwsAuthError & e) {
warn("AWS authentication failed for S3 request %s: %s", url.toHttpsUrl(), e.what()); warn("AWS authentication failed for S3 request %s: %s", url.toHttpsUrl(), e.message());
credentialProviderCache.erase(profile); credentialProviderCache.erase(profile);
throw; throw;
} }