From 1646bcf1b7fa5fecc88b3bd8885cad2ca901e899 Mon Sep 17 00:00:00 2001 From: "norbert.bizet" Date: Tue, 10 Jan 2023 05:47:43 -0500 Subject: [PATCH] Cloud: Fix #9747 Fatal error prevents catalog update so Volume was never set in error. --- bacula/src/stored/cloud_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/stored/cloud_dev.c b/bacula/src/stored/cloud_dev.c index 538abe24d..05a9cff59 100644 --- a/bacula/src/stored/cloud_dev.c +++ b/bacula/src/stored/cloud_dev.c @@ -1332,7 +1332,7 @@ bool cloud_dev::wait_one_transfer(DCR *dcr, char *VolName, uint32_t part) dcr->jcr->setJobStatus(JS_Running); if (!ok) { - Qmsg3(dcr->jcr, M_FATAL, 0, + Qmsg3(dcr->jcr, M_ERROR, 0, _("Unable to download Volume=\"%s\"%s. %s\n"), VolName, (part == 1) ? " label" : "", item->m_message ? item->m_message:""); } -- 2.47.3