From 185b40b131e7e6d7b1fb21f742812b8c982aee97 Mon Sep 17 00:00:00 2001 From: Jake Smith Date: Fri, 17 May 2024 22:58:06 +0100 Subject: [PATCH] HPCC-31888 Fix unknownJob build break Signed-off-by: Jake Smith --- dali/base/dasds.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dali/base/dasds.cpp b/dali/base/dasds.cpp index 530d28baea5..fb5cac01565 100644 --- a/dali/base/dasds.cpp +++ b/dali/base/dasds.cpp @@ -8846,7 +8846,7 @@ bool CDeltaWriter::save(std::queue> &todo) } catch (IException *e) { - LOG(MCoperatorWarning, unknownJob, e, "save: failed to touch delta in progress file"); + LOG(MCoperatorWarning, e, "save: failed to touch delta in progress file"); e->Release(); } // here if exception only @@ -8909,14 +8909,14 @@ bool CDeltaWriter::save(std::queue> &todo) } catch (IException *e) { - LOG(MCoperatorWarning, unknownJob, e, "save: failure whilst committing deltas to disk! Remedial action must be taken"); + LOG(MCoperatorWarning, e, "save: failure whilst committing deltas to disk! Remedial action must be taken"); e->Release(); // this is really an attempt at disaster recovery at this point forceBlockingSave = true; } if (forceBlockingSave) { - LOG(MCoperatorWarning, unknownJob, "Due to earlier failures, attempting forced/blocking save of Dali store"); + LOG(MCoperatorWarning, "Due to earlier failures, attempting forced/blocking save of Dali store"); while (todo.size()) todo.pop(); SDSManager->saveStore(nullptr, false, false);