Skip to content

Commit

Permalink
ISPN-7293 Status of invalidation caches is not displayed correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje authored and ryanemerson committed Dec 8, 2016
1 parent 9a6f334 commit a62f42e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/cache/CacheService.ts
Expand Up @@ -173,7 +173,7 @@ export class CacheService {
}

availability(container: ICacheContainer, cache: ICache): ng.IPromise<string> {
if (cache.isLocal()) {
if (cache.isLocal() || cache.isInvalidation()) {
return this.$q.resolve("AVAILABLE");
}
let firstServer: IServerAddress = container.serverGroup.members[0];
Expand Down

0 comments on commit a62f42e

Please sign in to comment.