use of com.yahoo.documentapi.messagebus.protocol.WriteDocumentReply in project vespa by vespa-engine.
the class DocumentProcessingHandlerForkTestCase method putToZero.
private void putToZero() throws InterruptedException {
assertTrue(sendMessage(TOZERO, createPutDocumentMessage()));
Reply reply = driver.client().awaitReply(60, TimeUnit.SECONDS);
assertTrue(reply instanceof WriteDocumentReply);
assertFalse(reply.hasErrors());
}
Aggregations