Skip to content

Commit

Permalink
Update seatunnel-engine/seatunnel-engine-server/src/main/java/org/apa…
Browse files Browse the repository at this point in the history
…che/seatunnel/engine/server/task/SeaTunnelSourceCollector.java

Co-authored-by: Jia Fan <[email protected]>
  • Loading branch information
hawk9821 and Hisoka-X authored Jul 23, 2024
1 parent 1a13ddb commit 6c10171
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void collect(T row) {
flowControlGate.audit((SeaTunnelRow) row);
if (StringUtils.isNotEmpty(tableId)) {
String tableName =
Optional.of(TablePath.of(tableId).getTableName()).orElse("null");
Optional.of(TablePath.of(tableId).getFullName()).orElse("null");
Counter sourceTableCounter = sourceReceivedCountPerTable.get(tableName);
if (Objects.nonNull(sourceTableCounter)) {
sourceTableCounter.inc();
Expand Down

0 comments on commit 6c10171

Please sign in to comment.