Skip to content

Commit

Permalink
[BugFix] fix CME of Pipe.processProperties (backport #55450) (#55460)
Browse files Browse the repository at this point in the history
Co-authored-by: Murphy <96611012+murphyatwork@users.noreply.github.com>
  • Loading branch information
mergify[bot] and murphyatwork authored Jan 27, 2025
1 parent ebe709b commit a8c0865
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fe/fe-core/src/main/java/com/starrocks/load/pipe/Pipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ public void processProperties(Map<String, String> properties) {
}
}
}
this.properties.put(key, value);
if (this.properties != properties) {
this.properties.put(key, value);
}
}
}

Expand Down

0 comments on commit a8c0865

Please sign in to comment.