You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by zh...@apache.org on 2019/11/21 19:30:18 UTC

[geode] branch develop updated (2e04da3 -> 12f68c8)

This is an automated email from the ASF dual-hosted git repository.

zhouxj pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from 2e04da3  GEODE-7477: Allow tests to test different client/server settings. (#4352)
     add 12f68c8  GEODE-6991: Create alter query-service gfsh command (#4324)

No new revisions were added by this update.

Summary of changes:
 .../integrationTest/resources/assembly_content.txt |   6 +
 ...erQueryServiceCommandWithSecurityDUnitTest.java | 244 ++++++++++++++++++
 ...ueryServiceCommandWithoutSecurityDUnitTest.java |  79 ++++++
 .../internal/cli}/util/TestMethodAuthorizer.java   |   3 +-
 .../cli/commands/TestMethodAuthorizer.txt}         |   2 +-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |   1 +
 .../internal/QueryConfigurationServiceImpl.java    |   2 +-
 .../configuration/QueryConfigService.java          | 272 +++++++++++++++++++++
 .../cli/commands/AlterQueryServiceCommand.java     | 173 +++++++++++++
 .../cli/commands/CommandAvailabilityIndicator.java |   3 +-
 .../cli/functions/AlterQueryServiceFunction.java   |  83 +++++++
 .../sanctioned-geode-core-serializables.txt        |   1 +
 .../configuration/QueryConfigServiceTest.java      |  71 ++++++
 .../cli/commands/AlterQueryServiceCommandTest.java | 213 ++++++++++++++++
 .../functions/AlterQueryServiceFunctionTest.java   | 149 +++++++++++
 15 files changed, 1298 insertions(+), 4 deletions(-)
 create mode 100644 geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/AlterQueryServiceCommandWithSecurityDUnitTest.java
 create mode 100644 geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/AlterQueryServiceCommandWithoutSecurityDUnitTest.java
 copy geode-core/src/{integrationTest/java/org/apache/geode/cache => distributedTest/java/org/apache/geode/management/internal/cli}/util/TestMethodAuthorizer.java (91%)
 copy geode-core/src/{integrationTest/java/org/apache/geode/cache/util/TestMethodAuthorizer.java => distributedTest/resources/org/apache/geode/management/internal/cli/commands/TestMethodAuthorizer.txt} (96%)
 create mode 100644 geode-core/src/main/java/org/apache/geode/cache/query/management/configuration/QueryConfigService.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/AlterQueryServiceCommand.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/management/internal/cli/functions/AlterQueryServiceFunction.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/cache/query/management/configuration/QueryConfigServiceTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/AlterQueryServiceCommandTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/functions/AlterQueryServiceFunctionTest.java