Daniel Beck edited a comment on Bug JENKINS-26576

How do you determine that builds exist but don't get deleted? Are they on the file system? In Jenkins?

There are no other log messages in that logger related to builds of this project?

What is the output when you run the following in Manage Jenkins ยป Script Console?

def j = Jenkins.instance.getItemByFullName("Job Name") // replace with actual job name
def b = j.firstBuild
while (b != null) {
  println b
  b = b.nextBuild
}
return

Does it match the builds you see listed in Jenkins?

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to