Skip to content

Commit

Permalink
[INLONG-11473][SORT] Fix AUDIT_DATA_TIME not removed when sink to Sta…
Browse files Browse the repository at this point in the history
…rRocks
  • Loading branch information
vernedeng committed Nov 8, 2024
1 parent 99dec05 commit 2c0f63f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public void invoke(T value, Context context)
long serializeStartTime = System.currentTimeMillis();
String serializedData;
try {
serializedData = serializer.serialize(data);
serializedData = serializer.serialize(schemaUtils.filterOutTimeField(data));
} catch (Exception e) {
log.error("Failed to serialize data", e);
if (sinkExactlyMetric != null) {
Expand Down

0 comments on commit 2c0f63f

Please sign in to comment.