我使用tapir + akka http 作为服务。端点之一下载文件。
val load
: Endpoint[Source[ByteString, Any], Any, Any, AkkaStreams] =
endpoint
.post
.in("load")
.in(streamBody(AkkaStreams)(
Schema(Schema.schemaForByteArray.schemaType),
CodecFormat.OctetStream()
))
.out(???)
刚开始警告
在收到请求结束之前发送 2xx 的“早期”响应
我如何使用貘处理这个问题?