This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 72e9e6e2554 Fix checkstyle line length violation in 
SubscriptionException (#17129)
72e9e6e2554 is described below

commit 72e9e6e25549144245844cb522b672d62f03caf3
Author: Anukalp Pandey <[email protected]>
AuthorDate: Tue Mar 3 13:31:07 2026 +0530

    Fix checkstyle line length violation in SubscriptionException (#17129)
    
    * Fix checkstyle line length in subscription exception message
    
    * apply mvn spotless:check
---
 .../db/subscription/task/subtask/SubscriptionSinkSubtaskManager.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/subscription/task/subtask/SubscriptionSinkSubtaskManager.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/subscription/task/subtask/SubscriptionSinkSubtaskManager.java
index 07def3ff4d3..6d5f27d8172 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/subscription/task/subtask/SubscriptionSinkSubtaskManager.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/subscription/task/subtask/SubscriptionSinkSubtaskManager.java
@@ -127,7 +127,8 @@ public class SubscriptionSinkSubtaskManager {
       if (Objects.isNull(topicName) || Objects.isNull(consumerGroupId)) {
         throw new SubscriptionException(
             String.format(
-                "Failed to construct subscription sink, because of %s or %s 
does not exist in pipe connector parameters",
+                "Failed to construct subscription sink, because of %s or %s "
+                    + "does not exist in pipe connector parameters",
                 PipeSinkConstant.SINK_TOPIC_KEY, 
PipeSinkConstant.SINK_CONSUMER_GROUP_KEY));
       }
 

Reply via email to