We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c37ca commit c05aeb0Copy full SHA for c05aeb0
bookkeeper-server/src/main/java/org/apache/bookkeeper/replication/ReplicationWorker.java
@@ -760,15 +760,15 @@ public void run() {
760
* Stop the replication worker service.
761
*/
762
public void shutdown() {
763
- LOG.info("Shutting down replication worker");
+ LOG.warn("Shutting down replication worker", new Exception("test CI"));
764
765
synchronized (this) {
766
if (!workerRunning) {
767
return;
768
}
769
workerRunning = false;
770
771
- LOG.info("Shutting down ReplicationWorker");
+ LOG.warn("Shutting down ReplicationWorker", new Exception("test CI"));
772
this.pendingReplicationTimer.cancel();
773
try {
774
this.workerThread.interrupt();
0 commit comments