Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2013-04-17 19:14:04 +0000
committerRoberto E. Escobar2013-06-17 23:08:54 +0000
commit8b91bcf3f917f44ac97935ced6fd4483f39fa63d (patch)
tree99c8dd16281f0a181f5e01b693e0ee83d0de1c69 /plugins
parente2a4b80049b0e21cc8388a7f49228a1c27614ca1 (diff)
downloadorg.eclipse.osee-8b91bcf3f917f44ac97935ced6fd4483f39fa63d.tar.gz
org.eclipse.osee-8b91bcf3f917f44ac97935ced6fd4483f39fa63d.tar.xz
org.eclipse.osee-8b91bcf3f917f44ac97935ced6fd4483f39fa63d.zip
bug[ats_N910B]: ValidateAtsDatabase removes Users from ArtifactCache
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/health/ValidateAtsDatabase.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/health/ValidateAtsDatabase.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/health/ValidateAtsDatabase.java
index 6054c66e0e4..ba6a7c68132 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/health/ValidateAtsDatabase.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/health/ValidateAtsDatabase.java
@@ -77,6 +77,7 @@ import org.eclipse.osee.framework.jdk.core.util.Strings;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.logging.SevereLoggingMonitor;
import org.eclipse.osee.framework.plugin.core.util.Jobs;
+import org.eclipse.osee.framework.skynet.core.User;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactCache;
import org.eclipse.osee.framework.skynet.core.artifact.Attribute;
@@ -247,7 +248,9 @@ public class ValidateAtsDatabase extends WorldXNavigateItemAction {
AtsTaskCache.decache((TeamWorkFlowArtifact) artifact);
AtsReviewCache.decache((TeamWorkFlowArtifact) artifact);
}
- ArtifactCache.deCache(artifact);
+ if (!(artifact instanceof User)) {
+ ArtifactCache.deCache(artifact);
+ }
}
if (monitor != null) {

Back to the top