Mark FAIL as an error

This commit is contained in:
Simon Ser 2020-07-15 11:07:28 +02:00
parent a44ee8d170
commit 3b0253855e
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -252,6 +252,8 @@ export function isError(cmd) {
case ERR_SASLABORTED:
case ERR_SASLALREADY:
return true;
case "FAIL":
return true;
default:
return false;
}