Details
-
Bug
-
Resolution: Duplicate
-
Minor - P4
-
None
-
3.2.12, 3.4.10
-
None
-
ALL
-
Description
I wanted to disable the cursorTimeout, since I do huge aggregate queries (and no_cursor_timeout does not exist for aggregate framework).
I accidentaly found a long integer overflow:
> db.getSiblingDB('admin').runCommand( { setParameter: 1, cursorTimeoutMillis: 2592000000 } )
|
{ "was" : 18000001, "ok" : 1 }
|
> db.getSiblingDB('admin').runCommand( { setParameter: 1, cursorTimeoutMillis: 2592000001 } )
|
{ "was" : -2147483648, "ok" : 1 }
|
Attachments
Issue Links
- duplicates
-
SERVER-30389 Simple and generic way to restrict server parameter values
-
- Closed
-