This is an automated email from the ASF dual-hosted git repository.
jiangtian 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 b918b3b7caf Update RetryUtils.java (#16368)
b918b3b7caf is described below
commit b918b3b7caf9832e735a3d8173f89e92056a46f7
Author: Yongzao <[email protected]>
AuthorDate: Mon Sep 8 19:03:58 2025 +0800
Update RetryUtils.java (#16368)
---
.../src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java
index 62b656364a5..cff60601edb 100644
---
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java
+++
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java
@@ -33,7 +33,8 @@ public class RetryUtils {
public static boolean needRetryForWrite(int statusCode) {
return statusCode == TSStatusCode.INTERNAL_SERVER_ERROR.getStatusCode()
|| statusCode == TSStatusCode.SYSTEM_READ_ONLY.getStatusCode()
- || statusCode == TSStatusCode.WRITE_PROCESS_REJECT.getStatusCode();
+ || statusCode == TSStatusCode.WRITE_PROCESS_REJECT.getStatusCode()
+ || statusCode == TSStatusCode.EXECUTE_STATEMENT_ERROR.getStatusCode();
}
public static boolean needRetryWithIncreasingInterval(Exception e) {