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

Improve handleSQLiteBusy() message

Closes https://github.com/NixOS/nix/pull/10319.
This commit is contained in:
Eelco Dolstra 2025-07-15 18:10:07 +02:00
parent fde6068874
commit 7b2f24d688

View file

@ -250,7 +250,7 @@ void handleSQLiteBusy(const SQLiteBusy & e, time_t & nextWarning)
if (now > nextWarning) {
nextWarning = now + 10;
logWarning({
.msg = HintFmt(e.what())
.msg = e.info().msg
});
}