Make AZ heading noncritical

This commit is contained in:
Ilya Ig. Petrov 2018-04-04 20:14:27 +05:00
parent 1502c4f159
commit c53c38fd4f

View File

@ -125,8 +125,15 @@
);
}
if (headError) {
clarifyThen(\`\${azUrl} недоступен!\`, cb)(headError);
const errText = \`\${azUrl} недоступен!\`;
console.log(errText);
/* Do nothing for now like it's not critical. Otherwise uncomment.
clarifyThen(
errText,
cb,
)(headError);
return;
*/
}
}