File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/MongoDB.Driver.Core/Core/Clusters
tests/MongoDB.Driver.Core.Tests/Core/Clusters Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ internal abstract class Cluster : ICluster
40
40
private static readonly TimeSpan __minHeartbeatInterval = TimeSpan . FromMilliseconds ( 500 ) ;
41
41
private static readonly SemanticVersion __minSupportedServerVersion = new SemanticVersion ( 2 , 6 , 0 ) ;
42
42
private static readonly IServerSelector __randomServerSelector = new RandomServerSelector ( ) ;
43
- private static readonly Range < int > __supportedWireVersionRange = new Range < int > ( 2 , 8 ) ;
43
+ private static readonly Range < int > __supportedWireVersionRange = new Range < int > ( 2 , 9 ) ;
44
44
45
45
// static properties
46
46
/// <summary>
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public void SupportedWireVersionRange_should_return_expected_result()
60
60
{
61
61
var result = Cluster . SupportedWireVersionRange ;
62
62
63
- result . Should ( ) . Be ( new Range < int > ( 2 , 8 ) ) ;
63
+ result . Should ( ) . Be ( new Range < int > ( 2 , 9 ) ) ;
64
64
}
65
65
66
66
[ Fact ]
You can’t perform that action at this time.
0 commit comments