From b79148bf7e449283e5b506e945ddf2b3d56e536c Mon Sep 17 00:00:00 2001 From: Akshay Shah Date: Wed, 25 May 2022 07:12:42 -0700 Subject: [PATCH] Use streaming Content-Type from protocol (#226) --- protocol_connect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol_connect.go b/protocol_connect.go index 4beaa2b9..6f3e963c 100644 --- a/protocol_connect.go +++ b/protocol_connect.go @@ -42,7 +42,7 @@ const ( connectUnaryContentTypePrefix = "application/" connectUnaryContentTypeJSON = connectUnaryContentTypePrefix + "json" - connectStreamingContentTypePrefix = "application/connectstream+" + connectStreamingContentTypePrefix = "application/connect+" ) type protocolConnect struct{}