From 380136aabab08e8ed839b9fe816fe2ea25d254d6 Mon Sep 17 00:00:00 2001 From: Ohjun Kwon Date: Wed, 8 Jan 2025 16:42:14 +0900 Subject: [PATCH] [#noissue] Allow blank agentId for global txId search --- .../pinpoint/web/controller/BusinessTransactionController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/main/java/com/navercorp/pinpoint/web/controller/BusinessTransactionController.java b/web/src/main/java/com/navercorp/pinpoint/web/controller/BusinessTransactionController.java index 19f27c6ba5b0..129483199b32 100644 --- a/web/src/main/java/com/navercorp/pinpoint/web/controller/BusinessTransactionController.java +++ b/web/src/main/java/com/navercorp/pinpoint/web/controller/BusinessTransactionController.java @@ -100,7 +100,7 @@ public TransactionInfoViewModel transactionInfo( @RequestParam(value = "focusTimestamp", required = false, defaultValue = DEFAULT_FOCUS_TIMESTAMP) @PositiveOrZero long focusTimestamp, - @RequestParam(value = "agentId", required = false) @NotBlank String agentId, + @RequestParam(value = "agentId", required = false) String agentId, @RequestParam(value = "spanId", required = false, defaultValue = DEFAULT_SPAN_ID) long spanId, @RequestParam(value = "v", required = false, defaultValue = "0") int viewVersion, @RequestParam(value = "useStatisticsAgentState", required = false, defaultValue = "false")