sandynz commented on code in PR #21508:
URL: https://github.com/apache/shardingsphere/pull/21508#discussion_r992910987
##########
kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/scenario/migration/MigrationJobAPIImpl.java:
##########
@@ -266,7 +294,13 @@ private void dropCheckJobs(final String jobId) {
log.info("dropCheckJobs start...");
long startTimeMillis = System.currentTimeMillis();
for (String each : checkJobIds) {
- dropJob(each);
+ try {
+ dropJob(each);
+ // CHECKSTYLE:OFF
+ } catch (final RuntimeException ex) {
+ // CHECKSTYLE:ON
+ log.info("drop check job failed, check job id: {}, error: {}",
each, ex.getMessage());
Review Comment:
Since it could be ignored, just record it here without stack trace
--
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]