Ignore 'invalid credentials' platform exception

This commit is contained in:
Vishesh Handa
2019-11-11 01:17:20 +01:00
parent 4e438e937c
commit 7e005d9900

View File

@ -26,6 +26,9 @@ bool shouldIgnorePlatformException(PlatformException ex) {
if (msg.contains("unauthorized")) {
return true;
}
if (msg.contains("invalid credentials")) {
return true;
}
if (msg.contains("failed to start ssh session")) {
return true;
}