Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions force-app/main/default/classes/CacheManager.cls
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ public with sharing class CacheManager {
}

public override Cache.Partition getPartition(String partitionName) {
if (!Cache.Session.isAvailable()) {
return null;
}
try {
if (!Cache.Session.isAvailable()) {
return null;
}
return Cache.Session.getPartition(partitionName);
} catch (Cache.Session.SessionCacheException e) {
return null;
Expand Down
Loading