}
// call reload in case we disable the build agent
distributedBuildManager.reload();
throw new ContinuumReleaseException(
"Failed to prepare release project because the build agent " + buildAgentUrl + " is not available" );
}
catch ( MalformedURLException e )
{
log.error( "Invalid build agent url " + buildAgentUrl );
throw new ContinuumReleaseException( "Invalid build agent url " + buildAgentUrl );
}
catch ( Exception e )
{
log.error( "Failed to prepare release project " + project.getName(), e );
throw new ContinuumReleaseException( "Failed to prepare release project " + project.getName(), e );
}
}