use of com.facebook.buck.distributed.thrift.StampedeId in project buck by facebook.
the class DistBuildServiceTest method createStampedeId.
private static StampedeId createStampedeId(String id) {
StampedeId stampedeId = new StampedeId();
stampedeId.setId(id);
return stampedeId;
}
use of com.facebook.buck.distributed.thrift.StampedeId in project buck by facebook.
the class ThriftUtilTest method createBuildJob.
private BuildJob createBuildJob() {
BuildJob job = new BuildJob();
job.setStatus(BuildStatus.FINISHED_SUCCESSFULLY);
StampedeId stampedeId = new StampedeId();
stampedeId.setId("all will be well");
job.setStampedeId(stampedeId);
return job;
}
Aggregations