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 GitHub
parent e93084be6c
commit f26124d42c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;