Skip to content

Commit

Permalink
Bug 37114743 - [37109856->14.1.2.0.1] Persistence should be gracefull…
Browse files Browse the repository at this point in the history
…y handled when cache scheme is missing (14.1.2.0 cl 112537 --> ce/14.1.2.0)

[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v14.1.2.0/": change = 113175]
  • Loading branch information
fryp committed Jan 4, 2025
1 parent f84e5fe commit 4d485cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
Expand Down Expand Up @@ -2050,7 +2050,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 4d485cb

Please sign in to comment.