Skip to content

Commit

Permalink
Merge pull request #2098 from arunans23/master
Browse files Browse the repository at this point in the history
Properly destroy passthru worker pools during Listener destroy stage
  • Loading branch information
arunans23 authored Sep 15, 2023
2 parents c62fcca + 96e7ce2 commit 472fdf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ public void stop() throws AxisFault {
}
}
serviceTracker.stop();
handler.stop();
} catch (IOException e) {
handleException("Error shutting down " + namePrefix + " listening IO reactor", e);
} catch (InterruptedException e) {
Expand All @@ -461,6 +460,7 @@ public void destroy() {
getAxisConfiguration().getObserversList().remove(axisObserver);*/
// serviceTracker.stop();
sourceConfiguration.getMetrics().destroy();
handler.stop();
}

/**
Expand Down

0 comments on commit 472fdf7

Please sign in to comment.