|
|
|
[
Permlink
| « Hide
]
Carlos Sanchez - 02/May/06 05:32 PM
File is copied anyway although the exception is thrown
I get the same error in 1.0.3 when the project is scheduled to run.
If I trigger a manual build it works fine. Probably is not enough information to understand the problem. Please tell me what info do you need and how to get it. Here is the log: INFO | jvm 1 | 2007/04/13 10:30:00 | 2007-04-13 10:30:00,020 [defaultScheduler_Worker-11] INFO SchedulesActivator - >>>>>>>>>>>>>>>>>>>>> Executing build job (test)... I saw in AbstractUpdateCommand this code:
ChangeSet change = (ChangeSet) i.next(); if ( startDate != null && change.getDate() != null ) the NPE comes from here: static final long getMillisOf(Date date) { means that change.getDate() returns null. I would update the code like this: ChangeSet change = (ChangeSet) i.next(); Seems that 1.0.3 Continuum contain 1.0 beta 3 SCM, so it is normal to not work.
I downloaded and build 1.1 version and it works there. |
||||||||||||||||||||||||||||||||||||||||||||||