This is an automated email from the ASF dual-hosted git repository.
nizhikov pushed a change to branch IGNITE-15629
in repository https://gitbox.apache.org/repos/asf/ignite.git
from f4caa309d67 IGNITE-15629 Change tag command implemented (#10678)
add c2662daeb90 IGNITE-19339 Get rid of deprecated GridSslContextFactory
at public API (#10660)
add 7fbb90a7515 IGNITE-19379 Control.sh: added the cache create command
(#10673)
add 476a6580907 IGNITE-19380 Fixed NPE on snapshot create operation for
in-memory cluster (#10674)
add 308775e8700 Merge branch 'master' into IGNITE-15629
No new revisions were added by this update.
Summary of changes:
docs/_docs/tools/control-script.adoc | 27 +++++
modules/control-utility/pom.xml | 6 +
.../internal/commandline/cache/CacheCreate.java | 124 +++++++++++++++++++++
.../commandline/cache/CacheSubcommands.java | 5 +
.../util/GridCommandHandlerClusterByClassTest.java | 36 ++++++
.../config/cache/cache-create-correct.xml} | 12 +-
.../config/cache/cache-create-no-configs.xml} | 7 +-
.../configuration/ConnectorConfiguration.java | 37 +-----
.../org/apache/ignite/internal/IgniteKernal.java | 2 +-
.../internal/client/ssl/GridSslContextFactory.java | 37 ------
.../snapshot/IgniteSnapshotManager.java | 10 +-
.../rest/protocols/tcp/GridTcpRestProtocol.java | 8 +-
.../internal/visor/cache/VisorCacheCreateTask.java | 97 ++++++++++++++++
.../internal/GridLifecycleAwareSelfTest.java | 9 +-
...mandHandlerClusterByClassTest_cache_help.output | 6 +
...dlerClusterByClassWithSSLTest_cache_help.output | 6 +
16 files changed, 328 insertions(+), 101 deletions(-)
create mode 100644
modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/cache/CacheCreate.java
copy modules/{spring/src/test/config/cdc/double-ignite-config.xml =>
control-utility/src/test/resources/config/cache/cache-create-correct.xml} (81%)
copy modules/{core/src/test/config/jobs-load-client.xml =>
control-utility/src/test/resources/config/cache/cache-create-no-configs.xml}
(88%)
delete mode 100644
modules/core/src/main/java/org/apache/ignite/internal/client/ssl/GridSslContextFactory.java
create mode 100644
modules/core/src/main/java/org/apache/ignite/internal/visor/cache/VisorCacheCreateTask.java