From 82a100d96c69dc4dead340791f959129ab21df80 Mon Sep 17 00:00:00 2001 From: Moritz Hedtke Date: Wed, 21 Sep 2022 14:51:45 +0200 Subject: [PATCH] Add note for accessing session state in stream. (#285) --- actix-session/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-session/src/lib.rs b/actix-session/src/lib.rs index f48c9ac40..dd844bef0 100644 --- a/actix-session/src/lib.rs +++ b/actix-session/src/lib.rs @@ -65,7 +65,7 @@ //! ``` //! //! The session state can be accessed and modified by your request handlers using the [`Session`] -//! extractor. +//! extractor. Note that this doesn't work in the stream of a streaming response. //! //! ```no_run //! use actix_web::Error;