Skip to content

Commit 6b6c717

Browse files
committed
Set default AllowLegacyAPIProp value to false
1 parent 83cec23 commit 6b6c717

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/uid2/operator/vertx/UIDOperatorVerticle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public UIDOperatorVerticle(IConfigService configService,
184184
this.saltRetrievalResponseHandler = saltRetrievalResponseHandler;
185185
this.optOutStatusApiEnabled = config.getBoolean(Const.Config.OptOutStatusApiEnabled, true);
186186
this.optOutStatusMaxRequestSize = config.getInteger(Const.Config.OptOutStatusMaxRequestSize, 5000);
187-
this.allowLegacyAPI = config.getBoolean(Const.Config.AllowLegacyAPIProp, true);
187+
this.allowLegacyAPI = config.getBoolean(Const.Config.AllowLegacyAPIProp, false);
188188
this.identityV3Enabled = config.getBoolean(IdentityV3Prop, false);
189189
this.disableOptoutToken = config.getBoolean(DisableOptoutTokenProp, false);
190190
}

0 commit comments

Comments
 (0)