From 212df7a07e2e89a22ccb7c79c84bf7693ac78c56 Mon Sep 17 00:00:00 2001 From: Stavros Kontopoulos Date: Mon, 29 Jan 2024 12:38:40 +0200 Subject: [PATCH] fix http full dup example --- docs/serving/services/http-protocol.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/serving/services/http-protocol.md b/docs/serving/services/http-protocol.md index d3fa1f14fc..151f412198 100644 --- a/docs/serving/services/http-protocol.md +++ b/docs/serving/services/http-protocol.md @@ -61,7 +61,7 @@ For more details on why the issue appears see [here](https://github.com/golang/g ### Configure HTTP/1 Full Duplex support -In order to enable the HTTP/1 full duplex support you can set the corresponding annotation at the service level as follows: +In order to enable the HTTP/1 full duplex support you can set the corresponding annotation at the revision spec level as follows: !!! warning @@ -74,11 +74,11 @@ kind: Service metadata: name: example-service namespace: default - annotations: - features.knative.dev/http-full-duplex: "Enabled" spec: template: spec: + annotations: + features.knative.dev/http-full-duplex: "Enabled" ... ```