]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removing the error message for single storage attempts, to avoid interfering with...
authorrgrosso <rgrosso@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 11 Sep 2012 15:14:18 +0000 (15:14 +0000)
committerrgrosso <rgrosso@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 11 Sep 2012 15:14:18 +0000 (15:14 +0000)
STEER/CDB/AliCDBGrid.cxx

index 55341b90c01cde3eceb444e77fdfcbb1219aab6d..3307b7cf121fcf81a60251fd8ea5530e14f5dcf1 100644 (file)
@@ -765,11 +765,10 @@ Bool_t AliCDBGrid::PutEntry(AliCDBEntry* entry, const char* mirrors) {
            Int_t remainingAttempts=fNretry;
            Int_t nsleep = fInitRetrySeconds; // number of seconds between attempts. We let it increase exponentially
            while(remainingAttempts > 0) {
-               AliDebug(2, Form("Putting the file in the OCDB - Attempt n. %d",fNretry-remainingAttempts+1));
+               AliDebug(2, Form("Putting file in the OCDB at %s - Attempt n. %d",targetSE.Data(),fNretry-remainingAttempts+1));
                file = TFile::Open(fullFilename,"CREATE");
                remainingAttempts--;
                if(!file || !file->IsWritable()){
-                   AliError(Form("Can't open file <%s>!", filename.Data()));
                    if(file && !file->IsWritable()) file->Close(); delete file; file=0;
                    AliDebug(2,Form("Attempt %d failed, sleeping for %d seconds",fNretry-remainingAttempts+1,nsleep));
                    if(remainingAttempts>0) sleep(nsleep);