From 484241a016d7b81f20b6e19d00ffbc4a3b864a22 Mon Sep 17 00:00:00 2001 From: Severin Neumann Date: Mon, 22 Jul 2024 17:21:49 +0200 Subject: [PATCH] Remove HTTP 1.1 restriction from Protocol Details (#571) In the `Protocol Details` section the spec states that it defines how OTLP is implemented over grpc and **http 1.1**, but later in the document in section `OTLP/HTTP` it states "Implementations MAY use HTTP/1.1 or HTTP/2 transports." This may confuse end readers and I suggest that it is easier to drop the 1.1 in the Protocol Details section. --- docs/specification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/specification.md b/docs/specification.md index efa2c36..157f0a1 100644 --- a/docs/specification.md +++ b/docs/specification.md @@ -72,7 +72,7 @@ OTLP defines the encoding of telemetry data and the protocol used to exchange data between the client and the server. This specification defines how OTLP is implemented over -[gRPC](https://grpc.io/) and HTTP 1.1 transports and specifies +[gRPC](https://grpc.io/) and HTTP transports and specifies [Protocol Buffers schema](https://developers.google.com/protocol-buffers/docs/overview) that is used for the payloads.