LOG.info("Unexpected phase in toThrift(Phase) - defaulting to CLEANUP" );
return ThriftTaskPhase.CLEANUP;
}
public static ThriftJobQueueInfo toThrift(JobQueueInfo q) {
ThriftJobQueueInfo tq = new ThriftJobQueueInfo();
tq.queueName = q.getQueueName();
tq.schedulingInfo = q.getSchedulingInfo();
return tq;
}