File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,12 @@ export interface CommandOperationOptions
55
55
// Admin command overrides.
56
56
dbName ?: string ;
57
57
authdb ?: string ;
58
- /** @deprecated Will be removed in the next major version. Set writeConcern.w to 0 instead. */
58
+ /**
59
+ * @deprecated
60
+ * Will be removed in the next major version. Set writeConcern.w to 0 instead.
61
+ *
62
+ * **WARNING:** When this flag is true, it may result in indeterminate driver behavior.
63
+ */
59
64
noResponse ?: boolean ;
60
65
}
61
66
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ export class RunAdminCommandOperation<T = Document> extends AbstractOperation<T>
51
51
constructor (
52
52
public command : Document ,
53
53
public override options : RunCommandOptions & {
54
- /** @deprecated Will be removed in the next major version, and replaced with an option to set writeConcern.w to 0 */
55
54
noResponse ?: boolean ;
56
55
bypassPinningCheck ?: boolean ;
57
56
}
You can’t perform that action at this time.
0 commit comments