From 92d0432012ee3b1dff952667e8d7bed93f4638a0 Mon Sep 17 00:00:00 2001 From: "Ruben S. Montero" Date: Fri, 24 Feb 2012 12:53:25 +0100 Subject: [PATCH] feature #1112: Change error message --- src/rm/RequestManagerAllocate.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rm/RequestManagerAllocate.cc b/src/rm/RequestManagerAllocate.cc index 8ec46bc581..222fcf996d 100644 --- a/src/rm/RequestManagerAllocate.cc +++ b/src/rm/RequestManagerAllocate.cc @@ -207,8 +207,7 @@ void ImageAllocate::request_execute(xmlrpc_c::paramList const& params, { ostringstream oss; - oss << "New Images cannot be allocated in the system " - << object_name(PoolObjectSQL::DATASTORE) << " [" << ds_id << "]."; + oss << "New images cannot be allocated in the system datastore."; failure_response(INTERNAL, allocate_error(oss.str()), att); delete tmpl;