[SERVER-1843] getParameter() and setParameter() commands (WAS: syncdelay configurable at runtime) Created: 23/Sep/10 Updated: 12/Jul/16 Resolved: 22/Nov/10 |
|
| Status: | Closed |
| Project: | Core Server |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 1.7.4 |
| Type: | Improvement | Priority: | Minor - P4 |
| Reporter: | Travis Whitton | Assignee: | Eliot Horowitz (Inactive) |
| Resolution: | Done | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Issue Links: |
|
||||||||
| Participants: | |||||||||
| Description |
|
Things controllable now: |
| Comments |
| Comment by auto [ 23/Nov/10 ] |
|
Author: {'login': 'erh', 'name': 'Eliot Horowitz', 'email': 'eliot@10gen.com'}Message: get/set -> (get|set)Parameter and a test |
| Comment by auto [ 22/Nov/10 ] |
|
Author: {'login': 'erh', 'name': 'Eliot Horowitz', 'email': 'eliot@10gen.com'}Message: syncdelay in CmdLine and controllable via get/set |
| Comment by Eliot Horowitz (Inactive) [ 22/Nov/10 ] |
|
Example > db.runCommand( { "get" : "*" }) { "quiet" : false, "notablescan" : false, "logLevel" : 0, "ok" : 1 }> db.runCommand( { "set" : 1 , "logLevel" : 2 }) { "was" : 0, "ok" : 1 }> db.runCommand( { "get" : "*" }) { "quiet" : false, "notablescan" : false, "logLevel" : 2, "ok" : 1 } |
| Comment by auto [ 22/Nov/10 ] |
|
Author: {'login': 'erh', 'name': 'Eliot Horowitz', 'email': 'eliot@10gen.com'}Message: get/set work for logLevel and quiet |