Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)

64703: Fix ACE-987: NPE in NodeEntity during post-commit write through to shared cache
    - Query selecting specific root nodes was not fully populating the stored entity
    - The failure itself mainly occurs when a check is made to prevent duplication of cache transfers
      (the cached value is the same); once the cache has an entry, the error would not have
      occurred again.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@66181 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2014-04-02 19:45:56 +00:00
parent e069af2971
commit b1c279bdaf
4 changed files with 50 additions and 17 deletions

View File

@@ -954,7 +954,7 @@ public class TransactionalCache<K extends Serializable, V extends Object>
" Cache: " + sharedCache + "\n" +
" Key: " + key + "\n" +
" New Value: " + bucket.getValue() + "\n" +
" Cash Value: " + sharedCache.get(key),
" Cache Value:" + sharedCache.get(key),
e);
}
}