From 5705b89d76477c3ba6987df02e28ba04e86a59da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 9 Apr 2022 13:41:37 +0200 Subject: [PATCH] doc: add missing article in session ticket section PR-URL: https://github.com/nodejs/node/pull/42632 Reviewed-By: Luigi Pinca Reviewed-By: Akhil Marsonya --- doc/api/tls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/tls.md b/doc/api/tls.md index 769d34a36e7..b7c826b0d5b 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -243,7 +243,7 @@ handlers. The servers encrypt the entire session state and send it to the client as a "ticket". When reconnecting, the state is sent to the server -in the initial connection. This mechanism avoids the need for server-side +in the initial connection. This mechanism avoids the need for a server-side session cache. If the server doesn't use the ticket, for any reason (failure to decrypt it, it's too old, etc.), it will create a new session and send a new ticket. See [RFC 5077][] for more information.