Skip to content

Commit

Permalink
[BugFix] fix CME of Pipe.processProperties (#55450)
Browse files Browse the repository at this point in the history
Signed-off-by: Murphy <[email protected]>
(cherry picked from commit 1b85e9d)
  • Loading branch information
murphyatwork authored and mergify[bot] committed Jan 26, 2025
1 parent 9738e2a commit 300f920
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 @@ -179,7 +179,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 300f920

Please sign in to comment.