From c2b17f483e19ba00f86a8a83661bde206e586e69 Mon Sep 17 00:00:00 2001
From: juanf <juanf@ethz.ch>
Date: Wed, 26 Oct 2022 15:03:03 +0200
Subject: [PATCH] SSDM-13074 : Improving resiliency of the queue

---
 .../QueueingDataSetStatusUpdaterService.java      | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/QueueingDataSetStatusUpdaterService.java b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/QueueingDataSetStatusUpdaterService.java
index e14db397ec8..a77a2273d5d 100644
--- a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/QueueingDataSetStatusUpdaterService.java
+++ b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/QueueingDataSetStatusUpdaterService.java
@@ -22,7 +22,6 @@ import java.io.IOException;
 import java.util.List;
 
 import org.apache.log4j.Logger;
-import org.springframework.remoting.RemoteAccessException;
 
 import ch.systemsx.cisd.base.exceptions.IOExceptionUnchecked;
 import ch.systemsx.cisd.base.exceptions.InterruptedExceptionUnchecked;
@@ -107,13 +106,6 @@ public class QueueingDataSetStatusUpdaterService
                                 // that failed before will work too so we can reduce sleep time
                                 // for next failures.
                                 Sleeper.resetSleepTime();
-                            } catch (RemoteAccessException ex)
-                            {
-                                // If connection with openBIS fails it is possible that
-                                // the same problem will occur for other updates in the queue,
-                                // so we just retry after increasing time.
-                                notifyUpdateFailure(dataSets, ex);
-                                Sleeper.sleepAndIncreaseSleepTime();
                             } catch (UserFailureException ex)
                             {
                                 // OpenBIS failure occurred - the problem may be connected with
@@ -123,6 +115,13 @@ public class QueueingDataSetStatusUpdaterService
                                 Sleeper.sleepAndIncreaseSleepTime();
                                 queue.add(dataSets);
                                 queue.remove();
+                            } catch (Exception ex)
+                            {
+                                // If other problems occur it is possible that
+                                // the same problem will occur for other updates in the queue,
+                                // so we just retry after increasing time.
+                                notifyUpdateFailure(dataSets, ex);
+                                Sleeper.sleepAndIncreaseSleepTime();
                             }
                         }
                     } catch (InterruptedException ex)
-- 
GitLab