Skip to content

Commit

Permalink
fix: message when unable to connect to backend (#1448)
Browse files Browse the repository at this point in the history
* fix: connectivity message

* Update src/validation_provider/index.ts

---------

Co-authored-by: anandgupta42 <93243293+anandgupta42@users.noreply.github.com>
  • Loading branch information
AdiGajbhiye and anandgupta42 authored Oct 3, 2024
1 parent fa8409b commit 058fed6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/validation_provider/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ export class ValidationProvider implements Disposable {
if (connectivity?.status !== "ok") {
this._isAuthenticated = false;
if (!silent) {
window.showErrorMessage("Unable to connect to altimate backend.");
window.showErrorMessage(
"Unable to connect to Altimate Service. Please check your Firewall/VPN settings or check service [status](https://altimateai.instatus.com/).",
);
}
return;
}
Expand Down

0 comments on commit 058fed6

Please sign in to comment.