azure-toolkit-libs/azure-toolkit-appservice-lib/src/main/java/com/microsoft/azure/toolkit/lib/appservice/service/impl/FunctionApp.java [128:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void refresh() {
        try {
            super.refresh();
        } finally {
            try {
                CacheManager.evictCache("appservice/functionapp/{}/slots", this.name());
                CacheManager.evictCache("appservice/functionapp/{}/slot/{}", CacheEvict.ALL);
            } catch (Throwable e) {
                log.warn("failed to evict cache", e);
            }
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azure-toolkit-libs/azure-toolkit-appservice-lib/src/main/java/com/microsoft/azure/toolkit/lib/appservice/service/impl/WebApp.java [128:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void refresh() {
        try {
            super.refresh();
        } finally {
            try {
                CacheManager.evictCache("appservice/webapp/{}/slots", this.name());
                CacheManager.evictCache("appservice/webapp/{}/slot/{}", CacheEvict.ALL);
            } catch (Throwable e) {
                log.warn("failed to evict cache", e);
            }
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



