|
@@ -90,12 +90,17 @@ public class ExecutorRegistryThread {
|
90
|
90
|
logger.info(">>>>>>>>>>> xxl-job registry-remove fail, registryParam:{}, registryResult:{}", new Object[]{registryParam, registryResult});
|
91
|
91
|
}
|
92
|
92
|
} catch (Exception e) {
|
93
|
|
- logger.info(">>>>>>>>>>> xxl-job registry-remove error, registryParam:{}", registryParam, e);
|
|
93
|
+ if (!toStop) {
|
|
94
|
+ logger.info(">>>>>>>>>>> xxl-job registry-remove error, registryParam:{}", registryParam, e);
|
|
95
|
+ }
|
|
96
|
+
|
94
|
97
|
}
|
95
|
98
|
|
96
|
99
|
}
|
97
|
100
|
} catch (Exception e) {
|
98
|
|
- logger.error(e.getMessage(), e);
|
|
101
|
+ if (!toStop) {
|
|
102
|
+ logger.error(e.getMessage(), e);
|
|
103
|
+ }
|
99
|
104
|
}
|
100
|
105
|
logger.info(">>>>>>>>>>> xxl-job, executor registry thread destory.");
|
101
|
106
|
|