summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Golemon <sara.golemon@mongodb.com>2023-04-28 10:48:18 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-04-29 00:03:17 +0000
commit15eabab16d84b1121dd2caeeff67857a8b279849 (patch)
tree724f87ca3487058ff2e600e588dba8f0bd2e6c22
parent2b37c887f589997336c9e6617837189ef8eb5334 (diff)
downloadmongo-15eabab16d84b1121dd2caeeff67857a8b279849.tar.gz
SERVER-67738 Remove featureFlagOIDC
-rw-r--r--jstests/auth/lib/commands_lib.js6
-rw-r--r--src/mongo/db/server_feature_flags.idl6
2 files changed, 2 insertions, 10 deletions
diff --git a/jstests/auth/lib/commands_lib.js b/jstests/auth/lib/commands_lib.js
index 33febfb69ea..170223762b4 100644
--- a/jstests/auth/lib/commands_lib.js
+++ b/jstests/auth/lib/commands_lib.js
@@ -5767,8 +5767,7 @@ export const authCommandsLib = {
// Only enterprise knows of this command.
skipTest:
(conn) => {
- return !getBuildInfo().modules.includes("enterprise")
- || !TestData.setParameters.featureFlagOIDC;
+ return !getBuildInfo().modules.includes("enterprise");
},
testcases: [
{
@@ -5785,8 +5784,7 @@ export const authCommandsLib = {
// Only enterprise knows of this command.
skipTest:
(conn) => {
- return !getBuildInfo().modules.includes("enterprise")
- || !TestData.setParameters.featureFlagOIDC;
+ return !getBuildInfo().modules.includes("enterprise");
},
testcases: [
{
diff --git a/src/mongo/db/server_feature_flags.idl b/src/mongo/db/server_feature_flags.idl
index d9f824eafce..127ed54b20a 100644
--- a/src/mongo/db/server_feature_flags.idl
+++ b/src/mongo/db/server_feature_flags.idl
@@ -59,12 +59,6 @@ feature_flags:
cpp_varname: gFeatureFlagAdditionalParticipants
default: false
shouldBeFCVGated: true
- featureFlagOIDC:
- description: "Feature flag for OIDC support"
- cpp_varname: gFeatureFlagOIDC
- default: true
- version: 7.0
- shouldBeFCVGated: true
featureFlagBulkWriteCommand:
description: "Support for bulkWrite command and one-shot transactions"
cpp_varname: gFeatureFlagBulkWriteCommand