]> source.dussan.org Git - sonarqube.git/commitdiff
Remove useless TODO
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 30 Jan 2017 10:35:00 +0000 (11:35 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 30 Jan 2017 12:26:35 +0000 (13:26 +0100)
No other ServletFilter should be executed after the login action

server/sonar-server/src/main/java/org/sonar/server/authentication/ws/LoginAction.java

index 86e7d20f557531fa38ed6cc7684100a7b5ccec0a..753fc8b507d2c15404f8d8b53136269062f845dd 100644 (file)
@@ -106,7 +106,6 @@ public class LoginAction extends ServletFilter implements AuthenticationWsAction
       UserDto userDto = authenticate(request, login, password);
       jwtHttpHandler.generateToken(userDto, request, response);
       threadLocalUserSession.set(ServerUserSession.createForUser(dbClient, userDto));
-      // TODO add chain.doFilter when Rack filter will not be executed after this filter (or use a Servlet)
     } catch (AuthenticationException e) {
       authenticationEvent.loginFailure(request, e);
       response.setStatus(HTTP_UNAUTHORIZED);