SERVER-110375 Fix typo "mogno" (#40972)

GitOrigin-RevId: 7081a80289515a1d2edfc653b93597502d4f69d6
This commit is contained in:
Jan 2025-09-05 16:50:43 +02:00 committed by MongoDB Bot
parent a2006f0d53
commit a4b70a0330
2 changed files with 5 additions and 5 deletions

View File

@ -40,12 +40,12 @@ In each of platform or build variant group directory there can be these files:
- `test_dev.yml`
- these files are merged into `etc/evergreen.yml` which is used for `mongodb-mongo-master` project on master branch
- after branching on all new branches these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mognodb-mongo-vX.Y` project
- after branching on all new branches these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mongodb-mongo-vX.Y` project
- `test_dev_master_and_lts_branches_only.yml`
- these files are merged into `etc/evergreen.yml` which is used for `mongodb-mongo-master` project on master branch
- after branching for LTS release (v7.0, v8.0 etc.) on a new branch these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mognodb-mongo-vX.Y` project
- after branching for LTS release (v7.0, v8.0 etc.) on a new branch these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mongodb-mongo-vX.Y` project
- **important**: all tests that are running on these build variants will NOT run on a new Rapid release (v7.1, v7.2, v7.3, v8.1, v8.2, v8.3 etc.) branch projects
- `test_dev_master_branch_only.yml`
@ -57,12 +57,12 @@ In each of platform or build variant group directory there can be these files:
- `test_release.yml`
- these files are merged into `etc/evergreen_nightly.yml` which is used for `mongodb-mongo-master-nightly` project on master branch
- after branching on all new branches these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mognodb-mongo-vX.Y` project
- after branching on all new branches these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mongodb-mongo-vX.Y` project
- `test_release_master_and_lts_branches_only.yml`
- these files are merged into `etc/evergreen_nightly.yml` which is used for `mongodb-mongo-master-nightly` project on master branch
- after branching for LTS release (v7.0, v8.0 etc.) on a new branch these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mognodb-mongo-vX.Y` project
- after branching for LTS release (v7.0, v8.0 etc.) on a new branch these files are merged into `etc/evergreen_nightly.yml` which is used for a new branch `mongodb-mongo-vX.Y` project
- **important**: all tests that are running on these build variants will NOT run on a new Rapid release (v7.1, v7.2, v7.3, v8.1, v8.2, v8.3 etc.) branch projects
- `test_release_master_branch_only.yml`

View File

@ -695,7 +695,7 @@ boost::optional<BSONObj> MongoURI::makeAuthObjFromOptions(
if (username.empty()) {
// In practice, this won't actually occur since
// this block corresponds to GSSAPI, while username
// may only be omitted with MOGNODB-X509.
// may only be omitted with MONGODB-X509.
return boost::none;
}
username.append("@").append(parsed[kAuthServiceRealm].String());