From 0bf1bfb7dd4b7fd60ac421390e2a876559e1b4a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20OUDOT?= Date: Mon, 4 May 2020 21:53:14 +0200 Subject: [PATCH] Do not stop logout process on error in Combination (#2165) --- lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm index 55968a64e..8504477c8 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm @@ -145,7 +145,7 @@ sub authLogout { "Condition changed between login and logout for " . $req->user . ", unable to select good backend" ); - return PE_ERROR; + return PE_OK; } my ( $res, $name ) = $sub->( 'authLogout', @_ ); $self->logger->debug(qq'User disconnected using scheme "$name"');