Skip to content

Commit e50c3bf

Browse files
committed
update folder
1 parent f09d9e0 commit e50c3bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/uid2/optout/delta/DeltaProductionOrchestrator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ private void writeDroppedRequestEntry(JsonArray droppedRequestArray, SqsParsedMe
265265
* Generates a unique filename for dropped requests.
266266
*/
267267
private String generateDroppedRequestFileName() {
268-
return String.format("%s%03d_%s_%08x.json",
268+
return String.format("dropped/%s%03d_%s_%08x.json",
269269
"optout-dropped-",
270270
replicaId,
271271
Instant.now().truncatedTo(ChronoUnit.SECONDS).toString().replace(':', '.'),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public OptOutSqsLogProducer(JsonObject jsonConfig, ICloudStorage cloudStorage, I
142142
SqsWindowReader windowReader = new SqsWindowReader(
143143
this.sqsClient, queueUrl, maxMessagesPerPoll,
144144
visibilityTimeout, deltaWindowSeconds, maxMessagesPerFile,
145-
malformedRequestUploadService, "malformed", replicaId
145+
malformedRequestUploadService, "malformed/", replicaId
146146
);
147147

148148
this.orchestrator = new DeltaProductionOrchestrator(

0 commit comments

Comments
 (0)