Skip to content

Commit c05aeb0

Browse files
committed
test CI
1 parent 38c37ca commit c05aeb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bookkeeper-server/src/main/java/org/apache/bookkeeper/replication/ReplicationWorker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,15 +760,15 @@ public void run() {
760760
* Stop the replication worker service.
761761
*/
762762
public void shutdown() {
763-
LOG.info("Shutting down replication worker");
763+
LOG.warn("Shutting down replication worker", new Exception("test CI"));
764764

765765
synchronized (this) {
766766
if (!workerRunning) {
767767
return;
768768
}
769769
workerRunning = false;
770770
}
771-
LOG.info("Shutting down ReplicationWorker");
771+
LOG.warn("Shutting down ReplicationWorker", new Exception("test CI"));
772772
this.pendingReplicationTimer.cancel();
773773
try {
774774
this.workerThread.interrupt();

0 commit comments

Comments
 (0)