Skip to content

Commit

Permalink
Bug 37114666 - [37109856->25.03] Persistence should be gracefully han…
Browse files Browse the repository at this point in the history
…dled when cache scheme is missing

[git-p4: depot-paths = "//dev/coherence-ce/main/": change = 111659]
  • Loading branch information
tmiddlet2666 committed Sep 30, 2024
1 parent 7fd018b commit 1e930eb
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 1e930eb

Please sign in to comment.