AMashenkov commented on a change in pull request #9423:
URL: https://github.com/apache/ignite/pull/9423#discussion_r711974718
##########
File path:
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsManagerImpl.java
##########
@@ -260,12 +289,14 @@ public IgniteStatisticsRepository statisticsRepository() {
/** {@inheritDoc} */
@Override public void dropAll() throws IgniteCheckedException {
+ checkStatisticsState("drop all statistics");
+
statCfgMgr.dropAll();
}
/** {@inheritDoc} */
@Override public void stop() {
- disableOperations();
+ stateChanged();
Review comment:
StatChanged callback shouldn't called here. A callback should call this
(stop) method instead.
Otherwise, it looks like components can be started here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]