From: Eric Bollengier Date: Mon, 26 Sep 2022 13:49:01 +0000 (+0200) Subject: Use ERROR instead of FATAL for Meta data insertion problem X-Git-Tag: Beta-15.0.0~497 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=634f4c6fd1ba747879f3d484f138056cc17b0ee7;p=thirdparty%2Fbacula.git Use ERROR instead of FATAL for Meta data insertion problem --- diff --git a/bacula/src/dird/catreq.c b/bacula/src/dird/catreq.c index 663b881c4..1a38b2336 100644 --- a/bacula/src/dird/catreq.c +++ b/bacula/src/dird/catreq.c @@ -668,7 +668,7 @@ static void update_attribute(JCR *jcr, char *msg, int32_t msglen) db_lock(jcr->db); if (!db_sql_query(jcr->db, val.c_str(), NULL, NULL)) { // TODO: Make sure the SQL query is correct, else the transaction will fail - Jmsg(jcr, M_FATAL, 0, _("Unable to insert Plugin metadata for FileIndex %lld. ERR=%s\n"), (int64_t)FileIndex, jcr->db->errmsg); + Jmsg(jcr, M_ERROR, 0, _("Unable to insert Plugin metadata for FileIndex %lld. ERR=%s\n"), (int64_t)FileIndex, jcr->db->errmsg); Dmsg1(50, "Unable to parse Plugin metadata err=%s\n", val.c_str()); } db_unlock(jcr->db);