From 9ed2f5d4264661714bbd3215b508c69b6b29c0cc Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Mon, 31 Jul 2017 11:58:32 +0000 Subject: [PATCH] SSDM-5407 : New Write / Atomic move test on dss startup - == false SVN: 38587 --- .../shared/utils/DssPropertyParametersUtil.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/utils/DssPropertyParametersUtil.java b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/utils/DssPropertyParametersUtil.java index 796592b4cdb..fcee22f34a3 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/utils/DssPropertyParametersUtil.java +++ b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/utils/DssPropertyParametersUtil.java @@ -370,29 +370,29 @@ public class DssPropertyParametersUtil throw createException(NON_VOLUME_TEMPLATE, "log-registrations", logRegistrationsPath, null, null); } // Same volume tests - else if (!dssTmpStore.equals(recoveryStateStore)) + else if (dssTmpStore.equals(recoveryStateStore) == false) { throw createException(NON_SAME_VOLUME_TEMPLATE, "dss-tmp", dssTmpPath, "recovery-state", recoveryStatePath); - } else if (!dssTmpStore.equals(logRegistrationsState)) + } else if (dssTmpStore.equals(logRegistrationsState) == false) { throw createException(NON_SAME_VOLUME_TEMPLATE, "dss-tmp", dssTmpPath, "log-registrations", logRegistrationsPath); } // Writable folders tests - else if (!isWritable(fileOperations, dssTmpPath)) + else if (isWritable(fileOperations, dssTmpPath) == false) { throw createException(NON_WRITABLE_TEMPLATE, "dss-tmp", dssTmpPath, null, null); - } else if (!isWritable(fileOperations, recoveryStatePath)) + } else if (isWritable(fileOperations, recoveryStatePath) == false) { throw createException(NON_WRITABLE_TEMPLATE, "recovery-state", recoveryStatePath, null, null); - } else if (!isWritable(fileOperations, logRegistrationsPath)) + } else if (isWritable(fileOperations, logRegistrationsPath) == false) { throw createException(NON_WRITABLE_TEMPLATE, "log-registrations", logRegistrationsPath, null, null); } // Move command tests - else if (!isMoveFromTo(fileOperations, dssTmpPath, recoveryStatePath)) + else if (isMoveFromTo(fileOperations, dssTmpPath, recoveryStatePath) == false) { throw createException(NON_MOVE_TEMPLATE, "dss-tmp", dssTmpPath, "recovery-state", recoveryStatePath); - } else if (!isMoveFromTo(fileOperations, dssTmpPath, logRegistrationsPath)) + } else if (isMoveFromTo(fileOperations, dssTmpPath, logRegistrationsPath) == false) { throw createException(NON_MOVE_TEMPLATE, "dss-tmp", dssTmpPath, "log-registrations", logRegistrationsPath); } -- GitLab