Periodically the error message below appears on ServiceNow
There is a bug in ServiceNow that trips this error message. There is nothing in UXstorm PDF PDF Condition Checker Business Rule that is making an outbound HTTP request directly. This error can appear on one Record but not another of the same table. It is nothing that UXstorm can do to fix as the UXstorm PDF code is correct.
You can get rid of this error by changing the PDF Condition Checker Business Rule to be async. Do this by going to System Definition -> Business Rules and editing PDF Condition Checker. Change When to async.
var midAvalible = new PDFUtils().pdfMIDServerAvailable();
if (!midAvalible) {
gs.addErrorMessage('PDF Generation is temporarily down.');
}