error handling when service is on down or in maintenance

This commit is contained in:
endel 2019-12-04 18:08:12 +00:00
parent e8c46db062
commit ac76249179
1 changed files with 3 additions and 0 deletions

View File

@ -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);
});
});