This commit is contained in:
José Moreira 2026-05-25 11:23:39 +08:00 committed by GitHub
commit 6d7fcab9c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,7 +101,7 @@ void assertAllowedInternalIfRequired(const OperationContext* opCtx,
const auto isInternal = isInternalClient(opCtx->getClient());
uassert(5491300,
str::stream() << operatorName << "' is not allowed in user requests",
str::stream() << operatorName << " is not allowed in user requests",
!(allowedWithClientType == AllowedWithClientType::kInternal && !isInternal));
}
} // namespace mongo