From 429f8d60e42a7625dc027a6332c2274b58658c95 Mon Sep 17 00:00:00 2001 From: Steven Murray <Steven.Murray@cern.ch> Date: Wed, 10 Mar 2021 18:27:21 +0100 Subject: [PATCH] Corrected rare error message --- catalogue/RdbmsCatalogue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/RdbmsCatalogue.cpp b/catalogue/RdbmsCatalogue.cpp index 8bf8702cba..5e8e014e4c 100644 --- a/catalogue/RdbmsCatalogue.cpp +++ b/catalogue/RdbmsCatalogue.cpp @@ -2988,7 +2988,7 @@ void RdbmsCatalogue::modifyArchiveRouteTapePoolName(const common::dataStructures if(0 == stmt.getNbAffectedRows()) { exception::UserError ue; - ue.getMessage() << "Either the archive route or the tape pool does not exist"; + ue.getMessage() << "The archive archive route does not exist"; throw ue; } } catch(exception::UserError &ue) { -- GitLab