Skip to content

Commit a9228dd

Browse files
committed
Remove enable_audit_logging feature flag
1 parent 5bb5cdc commit a9228dd

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

conf/integ-config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@
1111
"operators_metadata_path": "http://localhost:8088/operators/refresh",
1212
"core_attest_url": "http://localhost:8088/attest",
1313
"core_api_token": "trusted-partner-key",
14-
"enforceJwt": false,
15-
"enable_audit_logging": true
14+
"enforceJwt": false
1615
}

conf/local-config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@
1616
"aws_kms_jwt_signing_public_keys": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmvwB41qI5Fe41PDbXqcX5uOvSvfKh8l9QV0O3M+NsB4lKqQEP0t1hfoiXTpOgKz1ArYxHsQ2LeXifX4uwEbYJFlpVM+tyQkTWQjBOw6fsLYK2Xk4X2ylNXUUf7x3SDiOVxyvTh3OZW9kqrDBN9JxSoraNLyfw0hhW0SHpfs699SehgbQ7QWep/gVlKRLIz0XAXaZNw24s79ORcQlrCE6YD0PgQmpI/dK5xMML82n6y3qcTlywlGaU7OGIMdD+CTXA3BcOkgXeqZTXNaX1u6jCTa1lvAczun6avp5VZ4TFiuPo+y4rJ3GU+14cyT5NckEcaTKSvd86UdwK5Id9tl3bQIDAQAB",
1717
"core_public_url": "http://localhost:8088",
1818
"optout_url": "http://localhost:8081",
19-
"enforceJwt": false,
20-
"enable_audit_logging": true
19+
"enforceJwt": false
2120
}

conf/local-e2e-docker-config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,5 @@
2323
"aws_kms_jwt_signing_public_keys": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmvwB41qI5Fe41PDbXqcX5uOvSvfKh8l9QV0O3M+NsB4lKqQEP0t1hfoiXTpOgKz1ArYxHsQ2LeXifX4uwEbYJFlpVM+tyQkTWQjBOw6fsLYK2Xk4X2ylNXUUf7x3SDiOVxyvTh3OZW9kqrDBN9JxSoraNLyfw0hhW0SHpfs699SehgbQ7QWep/gVlKRLIz0XAXaZNw24s79ORcQlrCE6YD0PgQmpI/dK5xMML82n6y3qcTlywlGaU7OGIMdD+CTXA3BcOkgXeqZTXNaX1u6jCTa1lvAczun6avp5VZ4TFiuPo+y4rJ3GU+14cyT5NckEcaTKSvd86UdwK5Id9tl3bQIDAQAB",
2424
"enforceJwt": false,
2525
"core_public_url": "http://core:8088",
26-
"optout_url": "http://optout:8081",
27-
"enable_audit_logging": true
26+
"optout_url": "http://optout:8081"
2827
}

src/main/java/com/uid2/optout/Const.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public static class Config extends com.uid2.shared.Const.Config {
1717
public static final String OptOutDeleteExpiredProp = "optout_delete_expired";
1818
public static final String PartnersConfigPathProp = "partners_config_path";
1919
public static final String PartnersMetadataPathProp = "partners_metadata_path";
20-
public static final String EnableAuditLoggingProp = "enable_audit_logging";
2120
}
2221

2322
public static class Event {

src/main/java/com/uid2/optout/vertx/OptOutServiceVerticle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public OptOutServiceVerticle(Vertx vertx,
8888
this.listenPort = Const.Port.ServicePortForOptOut + Utils.getPortOffset();
8989
this.deltaRotateInterval = jsonConfig.getInteger(Const.Config.OptOutDeltaRotateIntervalProp);
9090
this.isVerbose = jsonConfig.getBoolean(Const.Config.ServiceVerboseProp, false);
91-
this.enableAuditLogging = jsonConfig.getBoolean(Const.Config.EnableAuditLoggingProp, true);
91+
this.enableAuditLogging = true;
9292

9393

9494
String replicaUrisConfig = jsonConfig.getString(Const.Config.OptOutReplicaUris);

0 commit comments

Comments
 (0)