azure-toolkit-libs/azure-toolkit-appservice-lib/src/main/java/com/microsoft/azure/toolkit/lib/appservice/service/impl/AbstractAzureManager.java [55:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public synchronized void refresh() {
        try {
            this.remote = loadRemote();
            this.isRefreshed = true;
        } catch (final ManagementException e) {
            if (HttpStatus.SC_NOT_FOUND == e.getResponse().getStatusCode()) {
                this.remote = null;
                this.isRefreshed = true;
            } else {
                throw e;
            }
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azure-toolkit-libs/azure-toolkit-compute-lib/src/main/java/com/microsoft/azure/toolkit/lib/compute/AbstractAzureResource.java [54:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void refresh() {
        try {
            this.remote = loadRemote();
            this.isRefreshed = true;
        } catch (final ManagementException e) {
            if (HttpStatus.SC_NOT_FOUND == e.getResponse().getStatusCode()) {
                this.remote = null;
                this.isRefreshed = true;
            } else {
                throw e;
            }
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



