Skip to content

Commit 212b19f

Browse files
Enable encryption by default
1 parent 4384809 commit 212b19f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/uid2/operator/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public Main(Vertx vertx, JsonObject config) throws Exception {
111111
this.useRemoteConfig = config.getBoolean(EnableRemoteConfigProp, false);
112112
this.clientSideTokenGenerate = config.getBoolean(Const.Config.EnableClientSideTokenGenerate, false);
113113
this.validateServiceLinks = config.getBoolean(Const.Config.ValidateServiceLinks, false);
114-
this.encryptedCloudFilesEnabled = config.getBoolean(Const.Config.EncryptedFiles, false);
114+
this.encryptedCloudFilesEnabled = config.getBoolean(Const.Config.EncryptedFiles, true);
115115
this.shutdownHandler = new OperatorShutdownHandler(Duration.ofHours(12), Duration.ofHours(config.getInteger(Const.Config.SaltsExpiredShutdownHours, 12)), Clock.systemUTC(), new ShutdownService());
116116
this.uidInstanceIdProvider = new UidInstanceIdProvider(config);
117117

0 commit comments

Comments
 (0)