File tree 1 file changed +2
-0
lines changed
server/src/main/java/org/opensearch/node
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1862,6 +1862,7 @@ public synchronized void close() throws IOException {
1862
1862
toClose .add (() -> stopWatch .stop ().start ("transport" ));
1863
1863
toClose .add (injector .getInstance (TransportService .class ));
1864
1864
toClose .add (nodeService .getTaskCancellationMonitoringService ());
1865
+ toClose .add (injector .getInstance (RemoteStorePinnedTimestampService .class ));
1865
1866
1866
1867
for (LifecycleComponent plugin : pluginLifecycleComponents ) {
1867
1868
toClose .add (() -> stopWatch .stop ().start ("plugin(" + plugin .getClass ().getName () + ")" ));
@@ -1892,6 +1893,7 @@ public synchronized void close() throws IOException {
1892
1893
if (logger .isTraceEnabled ()) {
1893
1894
toClose .add (() -> logger .trace ("Close times for each service:\n {}" , stopWatch .prettyPrint ()));
1894
1895
}
1896
+
1895
1897
IOUtils .close (toClose );
1896
1898
logger .info ("closed" );
1897
1899
}
You can’t perform that action at this time.
0 commit comments