Skip to content

Commit 8a968dd

Browse files
committed
clean up
1 parent 6bf879f commit 8a968dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public Main(Vertx vertx, JsonObject config) throws Exception {
101101

102102
this.appVersion = ApplicationVersion.load("uid2-operator", "uid2-shared", "uid2-attestation-api");
103103
HealthManager.instance.registerGenericComponent(new PodTerminationMonitor(config.getInteger(Const.Config.PodTerminationCheckInterval, 3000)));
104+
104105
// allow to switch between in-mem optout file cache and on-disk file cache
105106
if (config.getBoolean(Const.Config.OptOutInMemCacheProp)) {
106107
this.fsLocal = new MemCachedStorage();
@@ -126,8 +127,7 @@ public Main(Vertx vertx, JsonObject config) throws Exception {
126127
DownloadCloudStorage fsStores;
127128
if (coreAttestUrl != null) {
128129

129-
var clients = createUidClients(this.vertx, coreAttestUrl, operatorKey,
130-
this.shutdownHandler::handleAttestResponse);
130+
var clients = createUidClients(this.vertx, coreAttestUrl, operatorKey, this.shutdownHandler::handleAttestResponse);
131131
UidCoreClient coreClient = clients.getKey();
132132
UidOptOutClient optOutClient = clients.getValue();
133133
fsStores = coreClient;

0 commit comments

Comments
 (0)