Copilot commented on code in PR #9400:
URL: https://github.com/apache/seatunnel/pull/9400#discussion_r2131295438
##########
seatunnel-engine/seatunnel-engine-client/src/main/java/org/apache/seatunnel/engine/client/util/ContentFormatUtil.java:
##########
@@ -71,6 +75,7 @@ public static String format(List<JobStatusData>
jobStatusDataList) {
StringUtils.repeat("-", maxJobNameLength),
StringUtils.repeat("-", maxJobStatusLength),
StringUtils.repeat("-", maxSubmitTimeLength),
+ StringUtils.repeat("-", maxSubmitTimeLength),
Review Comment:
The separator for the 'Start Time' column incorrectly uses
maxSubmitTimeLength instead of maxStartTimeLength. Update it to use the correct
variable for proper formatting alignment.
```suggestion
StringUtils.repeat("-", maxStartTimeLength),
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]