How can check if the hudson is busy or not? Meaning i want to check if its currently executing any build or not.
Currently am using following thing:
if(lastBuild == lastCompletedBuild){
// hudson is free
}
else{
//hudson is busy
}
Is this a correct logic? What if the machine restarts/crashes after last build is updated and lastCompletedbuild is not?
Is there any API exposed which can directly be used?