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 @@ -1868,6 +1868,7 @@ public synchronized void close() throws IOException {
1868
1868
toClose .add (() -> stopWatch .stop ().start ("transport" ));
1869
1869
toClose .add (injector .getInstance (TransportService .class ));
1870
1870
toClose .add (nodeService .getTaskCancellationMonitoringService ());
1871
+ toClose .add (injector .getInstance (RemoteStorePinnedTimestampService .class ));
1871
1872
1872
1873
for (LifecycleComponent plugin : pluginLifecycleComponents ) {
1873
1874
toClose .add (() -> stopWatch .stop ().start ("plugin(" + plugin .getClass ().getName () + ")" ));
@@ -1898,6 +1899,7 @@ public synchronized void close() throws IOException {
1898
1899
if (logger .isTraceEnabled ()) {
1899
1900
toClose .add (() -> logger .trace ("Close times for each service:\n {}" , stopWatch .prettyPrint ()));
1900
1901
}
1902
+
1901
1903
IOUtils .close (toClose );
1902
1904
logger .info ("closed" );
1903
1905
}
You can’t perform that action at this time.
0 commit comments