Skip to content

Commit

Permalink
Bug 37114745 - [37109856->24.09.1] Persistence should be gracefully h…
Browse files Browse the repository at this point in the history
…andled when cache scheme is missing

[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v24.09/": change = 111660]
  • Loading branch information
tmiddlet2666 committed Sep 30, 2024
1 parent c88c1ba commit 3d0fbb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ public boolean isBackingMapPersistent(String sName)
DistributedScheme schemeDist = findDistributedScheme(sName);
ParameterResolver resolver = getResolver(sName);

return !schemeDist.getBackingMapScheme().isTransient(resolver);
return schemeDist != null && !schemeDist.getBackingMapScheme().isTransient(resolver);
}

/**
Expand Down

0 comments on commit 3d0fbb1

Please sign in to comment.