Peter Saxton
Peter Saxton

Reputation: 4666

How do you send HTTP trailers using Plug/Phoenix in Elixir

I can't find any information in plug about sending trailers. Is it even possible? With support for HTTP/2 this is important for applications like GRPC

Upvotes: 1

Views: 153

Answers (1)

José Valim
José Valim

Reputation: 51369

Not right now. Good news is that Plug v1.5 supports Cowboy 2+ which does support trailing headers for both HTTP 1.1 and HTTP 2. So pull requests are definitely appreciated.

Upvotes: 3

Related Questions