Skip to content

Commit

Permalink
temporary fix for MID-4613
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 24, 2018
1 parent ee8dcb3 commit e63cf31
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -213,7 +213,8 @@ static Throwable processConnIdException(Throwable connIdException, String desc,

// Introspect the inner exceptions and look for known causes
Exception knownCause = lookForKnownCause(connIdException, connIdException, connIdResult);
if (knownCause != null) {
// TODO remove this casting, it's temporary fix for https://jira.evolveum.com/browse/MID-4613
if (!(connIdException instanceof AlreadyExistsException) && knownCause != null) {
connIdResult.recordFatalError(knownCause);
return knownCause;
}
Expand Down

0 comments on commit e63cf31

Please sign in to comment.