NoAppCache must return false in "IsAvailable"

This commit is contained in:
Bjarke Berg
2019-12-04 09:11:57 +01:00
parent 898167f8c6
commit 5f5a6e460c

View File

@@ -17,7 +17,7 @@ namespace Umbraco.Core.Cache
public static NoAppCache Instance { get; } = new NoAppCache();
/// <inheritdoc />
public bool IsAvailable => true;
public bool IsAvailable => false;
/// <inheritdoc />
public virtual object Get(string cacheKey)