From 1f2e378376eb174695fb83b49e534c61b807e79a Mon Sep 17 00:00:00 2001 From: StellarisW Date: Thu, 31 Oct 2024 14:43:21 +0800 Subject: [PATCH] feat(http): add cookie for client --- volo-http/src/client/cookie.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/volo-http/src/client/cookie.rs b/volo-http/src/client/cookie.rs index d07a2627..36afed60 100644 --- a/volo-http/src/client/cookie.rs +++ b/volo-http/src/client/cookie.rs @@ -89,7 +89,8 @@ impl CookieLayer { /// /// It is recommended to use [`CookieLayer`] as the innermost layer in the client stack, /// - /// since it will extract cookies from the request header and store them in the [`CookieStore`]. + /// since it will extract cookies from the request header and store them before and after call + /// the transport layer. /// /// # Example ///