Repository: ignite Updated Branches: refs/heads/master 16e969e2f -> 428924376
IGNITE-9535 Missing annotation added to GridClusterStateProcessor.ClientChangeGlobalStateComputeRequest class. - Fixes #4721. Signed-off-by: Dmitriy Govorukhin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/42892437 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/42892437 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/42892437 Branch: refs/heads/master Commit: 428924376b8cd098596f238bb2aec10e251dabeb Parents: 16e969e Author: ibessonov <[email protected]> Authored: Tue Sep 11 15:12:19 2018 +0300 Committer: Dmitriy Govorukhin <[email protected]> Committed: Tue Sep 11 15:12:19 2018 +0300 ---------------------------------------------------------------------- .../internal/processors/cluster/GridClusterStateProcessor.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/42892437/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/GridClusterStateProcessor.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/GridClusterStateProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/GridClusterStateProcessor.java index 8d2620f..fea751c 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/GridClusterStateProcessor.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cluster/GridClusterStateProcessor.java @@ -56,6 +56,7 @@ import org.apache.ignite.internal.processors.cache.StoredCacheData; import org.apache.ignite.internal.processors.cache.persistence.metastorage.MetastorageLifecycleListener; import org.apache.ignite.internal.processors.cache.persistence.metastorage.ReadOnlyMetastorage; import org.apache.ignite.internal.processors.cache.persistence.metastorage.ReadWriteMetastorage; +import org.apache.ignite.internal.processors.task.GridInternal; import org.apache.ignite.internal.util.future.GridFinishedFuture; import org.apache.ignite.internal.util.future.GridFutureAdapter; import org.apache.ignite.internal.util.tostring.GridToStringExclude; @@ -1460,6 +1461,7 @@ public class GridClusterStateProcessor extends GridProcessorAdapter implements I /** * */ + @GridInternal private static class ClientChangeGlobalStateComputeRequest implements IgniteRunnable { /** */ private static final long serialVersionUID = 0L;
