Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
CVE-2025-59375 exp:2025-12-15

# UID2-6128
CVE-2025-55163 exp:2025-10-30
CVE-2025-55163 exp:2025-11-30
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,6 @@ private void handleReplicate(RoutingContext routingContext) {

if (!this.isGetOrPost(req)) {
this.sendBadRequestError(resp);
} else if (body != null) {
Copy link
Contributor

@clarkxuyang clarkxuyang Nov 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is the original code expect null body?

this.sendBadRequestError(resp);
} else if (this.replicaWriteClient == null) {
this.sendInternalServerError(resp, "optout replicas not configured");
}
Expand Down