in src/main/scala/com/twitter/iago/util/RemoteParrot.scala [94:107]
def sendRequest(batch: Seq[String]): ParrotStatus = {
log.trace(
"RemoteParrot.sendRequest: parrot[%s] sending requests of size=%d to the server",
address,
batch.size
)
val result = waitFor(client.sendRequest(batch))
log.trace(
"RemoteParrot.sendRequest: parrot[%s] done sending requests of size=%d to the server",
address,
batch.size
)
result
}