-
Bug
-
Resolution: Fixed
-
Major
Using the following groovy code:
def thr = Thread.currentThread();
def currentBuild = thr?.executable;
def changes = currentBuild.getChangeSet();
changes.getItems().each {
ChangeLogSet.Entry lastChange = (ChangeLogSet.Entry)it;
lastChange.getTimestamp();
}
Produces a wrong timestamp (0).
Reverting to git plugin 2.0.1 fixes the issue.
- is related to
-
JENKINS-21906 NumberFormatException occurs when accessing the JSON api
- Closed