summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/refresh_sessions_command.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-68214 move session_catalog*, session*, logical_session* to ↵Shin Yee Tan2022-08-171-2/+2
| | | | mongo/db/session directory
* SERVER-66360 Remove multi-user authentication supportSara Golemon2022-05-241-3/+1
|
* SERVER-53162 Convert refreshSessions command implementation to inherit from ↵Moustafa Maher2020-12-231-41/+30
| | | | IDL-generated base class
* SERVER-53147 Update IDL definitions for sessions commandsMoustafa Maher2020-12-191-3/+5
|
* SERVER-49065 Mark API Version 1 commandsPV992020-07-281-0/+4
|
* SERVER-41193 Get rid of LogicalSessionCache promote and refreshSessionsKaloian Manassiev2019-05-241-2/+6
| | | | Substitutes the uses with calls to vivify.
* SERVER-41193 Get rid of the `refreshSessionsInternal` commandKaloian Manassiev2019-05-211-5/+6
|
* SERVER-37837 Examine and reap sessions from the SessionsCatalogKaloian Manassiev2019-05-171-10/+12
| | | | | This change makes the logical sessions cache query and reap sessions, which are possibly only in-memory on the SessionsCatalog.
* 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-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-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-2/+3
|
* 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/+13
|
* SERVER-28335 Implement refreshSessions and refreshSessionsInternal commandssamantharitter2017-08-151-0/+91