diff --git a/src/main/java/com/uid2/operator/Main.java b/src/main/java/com/uid2/operator/Main.java index 9fb10d1b8..7b0f60e7c 100644 --- a/src/main/java/com/uid2/operator/Main.java +++ b/src/main/java/com/uid2/operator/Main.java @@ -111,7 +111,7 @@ public Main(Vertx vertx, JsonObject config) throws Exception { this.useRemoteConfig = config.getBoolean(EnableRemoteConfigProp, false); this.clientSideTokenGenerate = config.getBoolean(Const.Config.EnableClientSideTokenGenerate, false); this.validateServiceLinks = config.getBoolean(Const.Config.ValidateServiceLinks, false); - this.encryptedCloudFilesEnabled = config.getBoolean(Const.Config.EncryptedFiles, false); + this.encryptedCloudFilesEnabled = config.getBoolean(Const.Config.EncryptedFiles, true); this.shutdownHandler = new OperatorShutdownHandler(Duration.ofHours(12), Duration.ofHours(config.getInteger(Const.Config.SaltsExpiredShutdownHours, 12)), Clock.systemUTC(), new ShutdownService()); this.uidInstanceIdProvider = new UidInstanceIdProvider(config);