This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 0bc9f88229b branch-3.0: [fix](warmup) prevent NPE when upgrading from
older versions #53555 (#53666)
0bc9f88229b is described below
commit 0bc9f88229bfba5266bae6cefbeb9a7c97502ace
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 23 09:51:27 2025 +0800
branch-3.0: [fix](warmup) prevent NPE when upgrading from older versions
#53555 (#53666)
Cherry-picked from #53555
Co-authored-by: Kaijie Chen <[email protected]>
---
fe/fe-core/src/main/java/org/apache/doris/cloud/CloudWarmUpJob.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/cloud/CloudWarmUpJob.java
b/fe/fe-core/src/main/java/org/apache/doris/cloud/CloudWarmUpJob.java
index 0bd655893a7..aacec3f3f99 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/cloud/CloudWarmUpJob.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/cloud/CloudWarmUpJob.java
@@ -393,7 +393,7 @@ public class CloudWarmUpJob implements Writable {
info.add(Long.toString(maxBatchSize));
info.add(TimeUtils.longToTimeStringWithms(finishedTimeMs));
info.add(errMsg);
- info.add(tables.stream()
+ info.add(tables == null ? "" : tables.stream()
.map(t -> StringUtils.isEmpty(t.getRight())
? t.getLeft() + "." + t.getMiddle()
: t.getLeft() + "." + t.getMiddle() + "." +
t.getRight())
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]