1. 10 12月, 2013 1 次提交
  2. 08 12月, 2013 1 次提交
  3. 07 12月, 2013 7 次提交
  4. 06 12月, 2013 7 次提交
  5. 05 12月, 2013 3 次提交
  6. 04 12月, 2013 2 次提交
  7. 03 12月, 2013 4 次提交
  8. 30 11月, 2013 1 次提交
    • M
      Fix javadoc warnings in Run.java · fa89117a
      Mark Waite 提交于
      ProcessTree was referenced without being imported.  Added the import.
      
      ArtifactManager.load() method was referenced but doesn't exist.
      fa89117a
  9. 28 11月, 2013 2 次提交
  10. 27 11月, 2013 1 次提交
  11. 25 11月, 2013 2 次提交
  12. 23 11月, 2013 2 次提交
  13. 22 11月, 2013 1 次提交
  14. 21 11月, 2013 2 次提交
  15. 20 11月, 2013 2 次提交
    • J
      Better null safety. · 6586d779
      Jesse Glick 提交于
      Defense against an exception consistently thrown when running functional tests against 1.532.1 (but not 1.540, for whatever reason):
      … hudson.PluginWrapper stop
      WARNING: Failed to shut down …
      java.lang.NullPointerException
      	at jenkins.model.Jenkins.lookup(Jenkins.java:3898)
      	at hudson.PluginWrapper.getPlugin(PluginWrapper.java:287)
      	at hudson.PluginWrapper.stop(PluginWrapper.java:377)
      	at hudson.PluginManager.stop(PluginManager.java:650)
      	at org.jvnet.hudson.test.TestPluginManager.reallyStop(TestPluginManager.java:129)
      	at org.jvnet.hudson.test.TestPluginManager.access$000(TestPluginManager.java:55)
      	at org.jvnet.hudson.test.TestPluginManager$1.run(TestPluginManager.java:140)
      6586d779
    • J
      Do not throw Error for a recoverable condition. · 90395ee6
      Jesse Glick 提交于
      In this case, someone tried to add an element to a persisted list, and it was added in memory but the configuration could not be saved.
      Unclear whether that should even be treated as an error condition (the write failure might be transient, and a subsequent write would store the addition),
      but if it should be then we should throw a simple runtime exception.
      90395ee6
  16. 19 11月, 2013 2 次提交
    • J
      Trying to avoid an NPE reported by a 1.537 user with the Multijob plugin (patched 1.10). · 82d14407
      Jesse Glick 提交于
      java.lang.NullPointerException
      	at hudson.model.queue.FutureImpl.cancel(FutureImpl.java:78)
      	at com.tikal.jenkins.plugins.multijob.MultiJobBuilder.perform(MultiJobBuilder.java:156)
      	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
      	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:781)
      	at hudson.model.Build$BuildExecution.build(Build.java:199)
      	at hudson.model.Build$BuildExecution.doRun(Build.java:160)
      	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:562)
      	at com.tikal.jenkins.plugins.multijob.MultiJobBuild$MultiJobRunnerImpl.run(MultiJobBuild.java:70)
      	at hudson.model.Run.execute(Run.java:1665)
      	at hudson.model.Run.run(Run.java:1612)
      	at com.tikal.jenkins.plugins.multijob.MultiJobBuild.run(MultiJobBuild.java:63)
      	at hudson.model.ResourceController.execute(ResourceController.java:88)
      	at hudson.model.Executor.run(Executor.java:230)
      82d14407
    • J
      Better OfflineCause.ChannelTermination.toString(). · abe00746
      Jesse Glick 提交于
      abe00746