Add error messages to BDC dashboard page (#8103)

* Add error messages to BDC dashboard page

* Remove testing code

* PR fixes
This commit is contained in:
Charles Gagnon
2019-10-30 15:23:34 -07:00
committed by GitHub
parent 836bf1d28a
commit ef9321ef2c
6 changed files with 113 additions and 27 deletions

View File

@@ -269,3 +269,7 @@ export function getControllerEndpoint(serverInfo: azdata.ServerInfo): string | u
}
return undefined;
}
export function getBdcStatusErrorMessage(error: Error): string {
return localize('endpointsError', "Unexpected error retrieving BDC Endpoints: {0}", error.message);
}