From 1799c39d7287f179d8c824fb76f53e27be8c5cf7 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Fri, 29 Jun 2018 13:44:58 +0100 Subject: [PATCH] moving WriteBuffer obsolete msg to 2.0 --- StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs b/StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs index 2f7887824..dfa46b25d 100644 --- a/StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs +++ b/StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs @@ -321,7 +321,6 @@ public int ConnectTimeout /// /// The size of the output buffer to use /// - [Obsolete("WriteBuffer will be removed in the 2.0 release - see https://github.com/StackExchange/StackExchange.Redis/issues/871 for details.", false)] public int WriteBuffer { get { return writeBuffer.GetValueOrDefault(4096); } set { writeBuffer = value; } } internal LocalCertificateSelectionCallback CertificateSelectionCallback { get { return CertificateSelection; } private set { CertificateSelection = value; } }