HybridCache.RemoveAsync calls RemoveByTagAsync instead of RemoveAsync #56581
Labels
area-middleware
Includes: URL rewrite, redirect, response cache/compression, session, and other general middlesware
feature-caching
Includes: StackExchangeRedis and SqlServer distributed caches
In the
IEnumerable<string> keys
overload ofHybridCache.RemoveAsync
, the single-key case calls through toHybridCache.RemoveByTagAsync(string tag, ...)
instead of toHybridCache.RemoveAsync(string key, ...)
.This looks like a simple copy/paste error of the
IEnumerable<string> tags
overload ofHybridCache.RemoveByTagAsync
, which otherwise looks basically identical.The text was updated successfully, but these errors were encountered: