Details
-
Type:
Bug
-
Status: Resolved (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Component/s: core
-
Labels:
-
Similar Issues:
Description
Just a minor bug, which may potentially happen due to the race condition if a task is being executed with SYSTEM authentication.
- UserInterruption#getUser() uses User.get(String), which creates users on demand.
- When we create CauseOfInterruption.UserInterruption, we expect it exists
- BUT: the user may be deleted from parallel thread by the time we call UserInterruption#print, which invokes getUser()
- In such case the recently deleted user will be recreated
Attachments
Issue Links
- is related to
-
JENKINS-38721 Viewing canceled Pipeline jobs can get NPE from UserInterruption/summary.groovy
-
- Resolved
-
https://github.com/jenkinsci/jenkins/pull/2450