Skip to content

Commit

Permalink
Fixing gradle failures for server subproject
Browse files Browse the repository at this point in the history
Signed-off-by: Sagar Upadhyaya <[email protected]>
  • Loading branch information
sgup432 committed Jan 29, 2024
1 parent 8d48951 commit 8bb9e58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/src/main/java/org/opensearch/plugins/CachePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
public interface CachePlugin {

/**
* Returns a map of cacheStoreType -> a factory via which objects can be created on demand.
* Returns a map of cacheStoreType and a factory via which objects can be created on demand.
* For example:
* If there are two implementations of this plugin, lets say A and B, each may return below which can be
* aggregated by fetching all plugins.
*
* A -> Map.of(DISK, new ADiskCache.Factor(),
* A: Map.of(DISK, new ADiskCache.Factor(),
* ON_HEAP, new AOnHeapCache.Factor())
*
* B -> Map.of(ON_HEAP, new ADiskCache.Factor())
* B: Map.of(ON_HEAP, new ADiskCache.Factor())
*
* @return
*/
Expand Down

0 comments on commit 8bb9e58

Please sign in to comment.