vjuranek commented on Bug JENKINS-14248

@skybird
the only change from 0.16 to 0.17 was the way how the projects are added into list of items to compute the disk usage.
You can try to execute following script ($JENKINS_URL/script) and check if it returns empty list or not, but based on comment from Sebastian Möller, it seems that this is not the root cause and projects are added correctly (unfortunately I'm still not able to reproduce it )

import hudson.plugins.disk_usage.*
List<Item> items = new ArrayList<Item>();
ItemGroup<? extends Item> itemGroup = Jenkins.getInstance();
dt = new DiskUsageThread()
dt.addAllItems(itemGroup, items)
items.each{ if(it instanceof AbstractProject) println it.displayName}
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

Reply via email to