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; } }