*/
public static PipedInputStream gitRpc(final Project project, String service, Request request, Response response) {
response.setContentType("application/x-" + service + "-result");
RawBuffer raw = request.body().asRaw();
byte[] buf = raw.asBytes();
InputStream requestStream = null;
try {
// If the content size is bigger than memoryThreshold,
// which is defined as 100 * 1024 in play.api.mvc.BodyParsers trait,