Skip to content

Commit eb38209

Browse files
author
Oleksandr Poliakov
committed
pr
1 parent b4711fe commit eb38209

35 files changed

+36
-36
lines changed

src/MongoDB.Driver/AggregateOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public TimeSpan? MaxTime
131131
/// <summary>
132132
/// Gets or sets the operation timeout.
133133
/// </summary>
134-
// TODO: SCOT: Make it public when CSOT will be ready for GA
134+
// TODO: CSOT: Make it public when CSOT will be ready for GA
135135
internal TimeSpan? Timeout
136136
{
137137
get => _timeout;

src/MongoDB.Driver/BulkWriteOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public BsonDocument Let
8080
/// <summary>
8181
/// Gets or sets the operation timeout.
8282
/// </summary>
83-
// TODO: SCOT: Make it public when CSOT will be ready for GA
83+
// TODO: CSOT: Make it public when CSOT will be ready for GA
8484
internal TimeSpan? Timeout
8585
{
8686
get => _timeout;

src/MongoDB.Driver/ChangeStreamOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public BsonTimestamp StartAtOperationTime
171171
/// <summary>
172172
/// Gets or sets the operation timeout.
173173
/// </summary>
174-
// TODO: SCOT: Make it public when CSOT will be ready for GA
174+
// TODO: CSOT: Make it public when CSOT will be ready for GA
175175
internal TimeSpan? Timeout
176176
{
177177
get => _timeout;

src/MongoDB.Driver/ClientBulkWriteOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public ClientBulkWriteOptions(
8282
/// <summary>
8383
/// Gets or sets the operation timeout.
8484
/// </summary>
85-
// TODO: SCOT: Make it public when CSOT will be ready for GA
85+
// TODO: CSOT: Make it public when CSOT will be ready for GA
8686
internal TimeSpan? Timeout
8787
{
8888
get => _timeout;

src/MongoDB.Driver/Core/Configuration/ConnectionString.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ public bool? Ssl
473473
/// <summary>
474474
/// Gets the per-operation timeout.
475475
/// </summary>
476-
// TODO: SCOT: Make it public when CSOT will be ready for GA
476+
// TODO: CSOT: Make it public when CSOT will be ready for GA
477477
internal TimeSpan? Timeout => _timeout;
478478

479479
/// <summary>
@@ -1097,7 +1097,7 @@ private void ParseOption(string name, string value)
10971097
var sslVerifyCertificateValue = ParseBoolean(name, value);
10981098
_tlsInsecure = EnsureTlsInsecureIsValid(!sslVerifyCertificateValue);
10991099
break;
1100-
#if DEBUG // TODO: SCOT: Make it public when CSOT will be ready for GA
1100+
#if DEBUG // TODO: CSOT: Make it public when CSOT will be ready for GA
11011101
case "timeout":
11021102
case "timeoutms":
11031103
_timeout = value == "0" ? System.Threading.Timeout.InfiniteTimeSpan : ParseTimeSpan(name, value);

src/MongoDB.Driver/CountOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public long? Skip
9191
/// <summary>
9292
/// Gets or sets the operation timeout.
9393
/// </summary>
94-
// TODO: SCOT: Make it public when CSOT will be ready for GA
94+
// TODO: CSOT: Make it public when CSOT will be ready for GA
9595
internal TimeSpan? Timeout
9696
{
9797
get => _timeout;

src/MongoDB.Driver/CreateCollectionOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public BsonDocument StorageEngine
150150
/// <summary>
151151
/// Gets or sets the operation timeout.
152152
/// </summary>
153-
// TODO: SCOT: Make it public when CSOT will be ready for GA
153+
// TODO: CSOT: Make it public when CSOT will be ready for GA
154154
internal TimeSpan? Timeout
155155
{
156156
get => _timeout;

src/MongoDB.Driver/CreateManyIndexesOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public TimeSpan? MaxTime
6464
/// <summary>
6565
/// Gets or sets the operation timeout.
6666
/// </summary>
67-
// TODO: SCOT: Make it public when CSOT will be ready for GA
67+
// TODO: CSOT: Make it public when CSOT will be ready for GA
6868
internal TimeSpan? Timeout
6969
{
7070
get => _timeout;

src/MongoDB.Driver/CreateOneIndexOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public TimeSpan? MaxTime
5252
/// <summary>
5353
/// Gets or sets the operation timeout.
5454
/// </summary>
55-
// TODO: SCOT: Make it public when CSOT will be ready for GA
55+
// TODO: CSOT: Make it public when CSOT will be ready for GA
5656
internal TimeSpan? Timeout
5757
{
5858
get => _timeout;

src/MongoDB.Driver/CreateViewOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public IBsonSerializerRegistry SerializerRegistry
7171
/// <summary>
7272
/// Gets or sets the operation timeout.
7373
/// </summary>
74-
// TODO: SCOT: Make it public when CSOT will be ready for GA
74+
// TODO: CSOT: Make it public when CSOT will be ready for GA
7575
internal TimeSpan? Timeout
7676
{
7777
get => _timeout;

0 commit comments

Comments
 (0)