summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/end_sessions_command.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-53157 clean the codeMoustafa Maher2020-12-231-1/+1
|
* SERVER-53157 Convert endSessions command implementation to inherit from ↵Moustafa Maher2020-12-221-43/+33
| | | | IDL-generated base class
* SERVER-53147 Update IDL definitions for sessions commandsMoustafa Maher2020-12-191-3/+5
|
* SERVER-49165 Limit auditing authz failure in endSessions commandSara Golemon2020-08-251-0/+8
|
* SERVER-49065 Mark API Version 1 commandsPV992020-07-281-0/+4
|
* SERVER-41193 Get rid of the `refreshSessionsInternal` commandKaloian Manassiev2019-05-211-4/+9
|
* SERVER-37837 Get rid of TransactionReaper (Part 1)Kaloian Manassiev2019-05-091-4/+8
| | | | | | | | | This change gets rid of the TransactionReaper's usage of the ReplicationCoordinator for checking whether it is primary or not and makes the LogicalSessionCache joinable on shutdown. It also removes the TransactionReaper's grouping per-shard optimization and moves it all under SessionCollectionSharded.
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-281-1/+2
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* 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-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-32958 Command::help() returns std::stringBilly Donahue2018-01-301-2/+2
|
* SERVER-32460 platforms upgrade/downgrade workJason Carey2018-01-191-13/+0
|
* SERVER-32646 CommandHelpersBilly Donahue2018-01-161-1/+2
|
* SERVER-31608 remove FCV gettersJudah Schvimer2017-10-261-2/+4
|
* SERVER-30745 Prohibit unsafe comparisons against featureCompatibilityVersionLouis Williams2017-10-061-4/+2
|
* SERVER-30430 Gate session use on featureCompatibilityVersionGabriel Russell2017-09-211-0/+10
|
* SERVER-28336 endSessions commandGabriel Russell2017-09-211-0/+89