Revision 7217
Added by ben leinfelder over 12 years ago
src/edu/ucsb/nceas/metacat/dataone/hazelcast/HazelcastService.java | ||
---|---|---|
557 | 557 |
boolean isLocalPid = owner.localMember(); |
558 | 558 |
logMetacat.debug("owner of pid: " + pid.getValue() + " isLocal: " + isLocalPid); |
559 | 559 |
// if we don't own it, we can look it up locally in hopes that we have our own copy |
560 |
if (!isLocalPid) {
|
|
560 |
if (true) {
|
|
561 | 561 |
// get directly from backing store |
562 | 562 |
sm = IdentifierManager.getInstance().getSystemMetadata(pid.getValue()); |
563 | 563 |
if (sm != null) { |
Also available in: Unified diff
ignore partition owner -- always attempt to look up form local store if we were unable to get the SM from the shared map.