error handling when service is on down or in maintenance

Este commit está contenido en:
endel 2019-12-04 18:08:12 +00:00
padre e8c46db062
commit ac76249179

Ver fichero

@ -92,6 +92,9 @@ ACME.create = function create(me) {
}
return p.then(function() {
return ACME._directory(me).then(function(resp) {
if (resp.type && resp.type.indexOf("error") >= 0) {
throw new Error(resp.detail);
}
return fin(resp.body);
});
});