Skip to content

Commit 853d38a

Browse files
committed
fix mime subtype
Signed-off-by: Ben Ye <[email protected]>
1 parent f181abe commit 853d38a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/querier/codec/protobuf_codec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func (p ProtobufCodec) ContentType() v1.MIMEType {
2626
return v1.MIMEType{Type: "application", SubType: "x-protobuf"}
2727
}
2828
// TODO: switch to use constants.
29-
return v1.MIMEType{Type: "application", SubType: "application/x-cortex-query+proto"}
29+
return v1.MIMEType{Type: "application", SubType: "x-cortex-query+proto"}
3030
}
3131

3232
func (p ProtobufCodec) CanEncode(resp *v1.Response) bool {

0 commit comments

Comments
 (0)