Skip to content

Commit

Permalink
Fix PCT problem of jenkinsci#8418
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck committed Aug 24, 2023
1 parent ae74db6 commit 3ed1df3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/main/java/jenkins/ErrorAttributeFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,9 @@ public void doFilter(ServletRequest servletRequest, ServletResponse servletRespo
servletRequest.setAttribute(USER_ATTRIBUTE, authentication);
filterChain.doFilter(servletRequest, servletResponse);
}

@Override
public void destroy() {
// Otherwise the PCT fails
}
}

0 comments on commit 3ed1df3

Please sign in to comment.