From 8e27bff11625c655ab3ebe1d30e4baa031b5a0a3 Mon Sep 17 00:00:00 2001 From: sagarwal Date: Thu, 3 Oct 2024 22:27:26 +0530 Subject: [PATCH] Corrected the listed changes --- CHANGES/9141.misc.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES/9141.misc.rst b/CHANGES/9141.misc.rst index 4250207e5c..0f74044542 100644 --- a/CHANGES/9141.misc.rst +++ b/CHANGES/9141.misc.rst @@ -1,3 +1,3 @@ -Modified the `ClientSession` class by adding a private attribute `_test` of type `bool`, with a default value of `False` to the class. -Modified the default value of `retry_persistent_connection` in `ClientSession` to `False` if `_test` was `True`. -Also, `TestClient` initialized `ClientSession` with `test=True`. -- by :user:`ShubhAgarwal-dev`. +Modified the `ClientSession` class by adding a private attribute `_retry_connection` of type `bool`, with a default value of `True` to the class. +`retry_persistent_connection` in `ClientSession` is set to `False` if `_retry_connection` was `False`. +In the session of `TestClient`, `ClientSession` attribute `_retry_connection` is changed to `False` -- by :user:`ShubhAgarwal-dev`.