summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_kill_op.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-67459 Change BasicCommand to use DatabaseNameSophia Tan2022-08-101-3/+3
|
* SERVER-66203 move MONGO_LOGV2_DEFAULT_COMPONENT defs below includesBilly Donahue2022-05-061-1/+3
|
* SERVER-55870 Add diagnostic information to killOp and killSessionXXX loggingSergey Galtsev2021-06-231-1/+7
|
* SERVER-50375 Ensure mongos forwards API parameters to shards, try 3A. Jesse Jiryu Davis2020-10-051-1/+4
|
* Revert "SERVER-50375 Ensure mongos forwards API parameters to shards"A. Jesse Jiryu Davis2020-10-021-4/+1
| | | | This reverts commit 9b8d4c2f029e2384fa769014c00091e4de362ea4.
* SERVER-50375 Ensure mongos forwards API parameters to shardsA. Jesse Jiryu Davis2020-10-021-1/+4
|
* Revert "SERVER-50375 Thoroughly test that mongos forwards API parameters"Tommaso Tocci2020-10-011-4/+1
| | | | This reverts commit e66093f0a8ee3cd95dea9480028a6da814bb1854.
* SERVER-50375 Thoroughly test that mongos forwards API parametersA. Jesse Jiryu Davis2020-10-011-1/+4
|
* SERVER-47735 change mongo source over to logv2Billy Donahue2020-04-261-1/+1
| | | | | | - Remove several legacy logger/ files - Convert all MONGO_LOG_DEFAULT_COMPONENT to the LOGV2 version. - Globally replace logger::{LogSeverity,LogComponent} => logv2::
* SERVER-46799 Update sharding log lines to adhere to LOGV2 style guideCheahuychou Mao2020-03-251-1/+4
|
* SERVER-45567 removing util/log.h where I canGabriel Russell2020-02-211-1/+0
| | | | | | | o converting some log lines that were missed o fixing some missing includes create mode 100644 src/mongo/transport/ismaster_metrics.cpp
* SERVER-45869 automatically converted structured loggingGabriel Russell2020-02-131-1/+2
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-3/+1
|
* SERVER-7143 replace standard library number parsing with custom NumberParserNathan Brown2019-06-271-1/+1
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-1/+1
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-35115 Separate dbclientinterface.h into several parts, one per class.Henrik Edin2018-06-291-1/+0
|
* SERVER-34628 Really remove appendCommandStatusMathias Stearn2018-05-081-3/+1
| | | | | | | | | | All remaining callers are transitioned to some form of usassert. This was done with an elaborate set of vim macros to make this tractable. Therefore it should not be considered an example of the best way to write new code, just as an improvement on what was there before. In particular, I couldn't easily remove Status's that are named then only used once in uassertStatusOK, nor could I convert the pattern of checking a StatusWith<T>'s getStatus() then calling getValue() to just call uassertStatusOK(returnsStatusWith()).
* SERVER-18084 Get rid of direct references to 'grid'Kaloian Manassiev2018-05-071-6/+6
|
* SERVER-33462 allow killOp on local mongos operationsIan Boros2018-03-271-26/+23
|
* SERVER-33286 Provide service context in Command::secondaryAllowed to allow ↵Henrik Edin2018-02-141-1/+1
| | | | getting interfaces without using global get function.
* SERVER-33136 const-ify the command auth accessorsBilly Donahue2018-02-061-1/+1
|
* SERVER-32958 unrevert "SERVER-32958 slaveOk,slaveOverrideOk replacement"Billy Donahue2018-01-311-2/+2
| | | | | | w/fix: update a new command to secondaryAllowed This reverts commit d75cb425fbc3cf4b569eb1722c3f8abec45654a2.
* Revert "SERVER-32958 slaveOk,slaveOverrideOk replacement"Judah Schvimer2018-01-311-2/+2
| | | | This reverts commit be24b0323d3f2d424d9e22337f4221d39001ac31.
* SERVER-32958 slaveOk,slaveOverrideOk replacementBilly Donahue2018-01-311-2/+2
| | | | declare read_preference dep. update service_entry_opint_embedded
* SERVER-32646 CommandHelpersBilly Donahue2018-01-161-1/+1
|
* SERVER-29731 get errmsg out of BasicCommand apiMathias Stearn2017-07-131-1/+0
| | | | It is now only used by commands deriving from ErrmsgCommandDeprecated.
* SERVER-29731 convert all direct subclasses of Command to BasicCommandMathias Stearn2017-07-131-2/+2
|
* SERVER-29319 Delete DBClient::runCommandWithMetadata{,AndTarget}Mathias Stearn2017-06-281-2/+1
|
* SERVER-29260 Make BSONObj argument to Command::run() const&Mathias Stearn2017-05-171-1/+1
|
* SERVER-28701 Remove queryOptions argument from Command::run()Mathias Stearn2017-04-121-1/+0
|
* SERVER-27938 Rename all OperationContext variables to opCtxMaria van Keulen2017-03-071-2/+2
| | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo.
* SERVER-23996 ShardRegistry::getShard should return a ↵Misha Tyulenev2016-08-251-6/+4
| | | | StatusWith<shared_ptr<Shard>>
* SERVER-25488 merge ClientBasic and ClientKyle Suarez2016-08-081-1/+1
|
* SERVER-25258: Improve mongos killOp opID parsingSpencer Jackson2016-07-261-1/+2
|
* SERVER-24991 Redact streaming log messagesDan Pasette2016-07-201-1/+1
| | | | Reviewed all relevant files in src/mongo/s..
* SERVER-23971 Clang-Format codeMark Benvenuto2016-05-281-1/+3
|
* SERVER-20224 commands that write support writeConcernJudah Schvimer2016-04-121-0/+4
|
* SERVER-23024 remove isWriteCommandForConfigServer methodMisha Tyulenev2016-03-151-3/+0
|
* SERVER-20652 remove pseudocommand downconversion code in mongosAdam Midvidy2015-09-261-5/+3
|
* SERVER-19875 Add OperationContext to CatalogManager::getAllShardsSpencer T Brody2015-08-251-1/+1
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-70/+73
|
* SERVER-18815 Rename shard registry's findIfExists(...) to getShard(...) and ↵Daniel Alabi2015-06-181-1/+1
| | | | avoid references to shared pointers to Shard object
* SERVER-18124 Move 'newest chunk' check to the catalog managerKaloian Manassiev2015-05-151-9/+19
| | | | | * Adds ability to specify limit to the chunk listing call. * Gets rid of the getChunksForShard call since it can be built on getChunks
* SERVER-15860 Switch replication metadata ops to be replication-specific, ↵matt dannenberg2015-04-171-2/+1
| | | | rather than using commands
* SERVER-17817 Make AuthorizationSession a decoration of ClientBasic.Andy Schwerin2015-04-161-1/+1
|
* SERVER-18064 Move shard.cpp under the sharding client libraryKaloian Manassiev2015-04-151-1/+1
|
* SERVER-7775 add killOp commandAdam Midvidy2015-04-061-0/+121