ui: Better error message checking for cross dc connect check (#8320)

This commit is contained in:
John Cowen 2020-07-16 18:27:34 +01:00 committed by hashicorp-ci
parent 927e73d8db
commit cf9469f201
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export default RepositoryService.extend({
const body = get(e, 'errors.firstObject.detail').trim();
switch (code) {
case '500':
if (datacenter !== null && body === ERROR_MESH_DISABLED) {
if (datacenter !== null && body.endsWith(ERROR_MESH_DISABLED)) {
set(datacenter, 'MeshEnabled', false);
}
return;