1. 09 12月, 2009 1 次提交
  2. 08 12月, 2009 7 次提交
  3. 07 12月, 2009 2 次提交
  4. 06 12月, 2009 1 次提交
  5. 05 12月, 2009 3 次提交
  6. 04 12月, 2009 8 次提交
  7. 03 12月, 2009 4 次提交
  8. 02 12月, 2009 3 次提交
  9. 01 12月, 2009 3 次提交
  10. 30 11月, 2009 2 次提交
  11. 29 11月, 2009 2 次提交
  12. 28 11月, 2009 3 次提交
  13. 26 11月, 2009 1 次提交
    • K
      Merged revisions 24110-24112 via svnmerge from · bd775698
      kohsuke 提交于
      https://svn.dev.java.net/svn/hudson/branches/rc
      
      ........
        r24110 | kohsuke | 2009-11-25 17:14:49 -0800 (Wed, 25 Nov 2009) | 22 lines
        
        On my production server I started seeing a strange NPE
        like this:
        
        java.lang.NullPointerException
            at hudson.model.Label.contains(Label.java:277)
            at hudson.model.Queue$JobOffer.canTake(Queue.java:177)
            at hudson.model.Queue$ApplicableJobOfferList.(Queue.java:767)
            at hudson.model.Queue$ApplicableJobOfferList.(Queue.java:759)
            at hudson.model.Queue.pop(Queue.java:684)
            at hudson.model.Executor.grabJob(Executor.java:161)
            at hudson.model.Executor.run(Executor.java:103)
        
        The only possibility is that the getNodes() is returning null,
        and that's only possible if Label.getNodes() returns null,
        which in turn is only possible if the assignment to nodes
        is overwritten by the reset method before it's used as a
        return value.
        
        This fix should eliminate the possibility that the getNodes()
        method return null.
      ........
        r24111 | kohsuke | 2009-11-25 17:15:45 -0800 (Wed, 25 Nov 2009) | 2 lines
        
        Actually, getNodes() has another possibility of such a data race.
      ........
        r24112 | kohsuke | 2009-11-25 17:24:27 -0800 (Wed, 25 Nov 2009) | 1 line
        
        typo
      ........
      
      
      git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@24127 71c3de6d-444a-0410-be80-ed276b4c234a
      bd775698