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

sdanilov pushed a change to branch new-marshaller
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard f580edc57 New marshaller test
     add bea62dd19 IGNITE-17283 Start nodes in parallel in ItCmgRaftServiceTest 
(#911)
     add 3972ae447 IGNITE-17193 Return application/problem+json in REST. Fixes 
#890
     new 71e2c265d New marshaller test

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f580edc57)
            \
             N -- N -- N   refs/heads/new-marshaller (71e2c265d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../configuration/ItShowConfigurationCallTest.java |   2 +-
 .../ignite/rest/ItGeneratedRestClientTest.java     |  67 ++++---
 .../management/raft/ItCmgRaftServiceTest.java      |  72 +++----
 .../rest/ItClusterManagementControllerTest.java    |  15 +-
 .../rest/ClusterManagementController.java          |  19 +-
 .../rest/ClusterManagementRestFactory.java         |   2 +-
 .../IgniteInternalCheckedExceptionHandler.java}    |  25 +--
 .../handler/IgniteInternalExceptionHandler.java    |  15 +-
 ...umentClusterInitializationExceptionHandler.java |  15 +-
 .../configuration/validation/ValidationIssue.java  |  16 +-
 .../validation/ExceptKeysValidator.java            |   2 +-
 .../validation/ImmutableValidator.java             |   1 +
 .../configuration/validation/OneOfValidator.java   |   2 +-
 .../validation/PowerOfTwoValidator.java            |   1 +
 .../configuration/validation/RangeValidator.java   |   2 +
 .../configuration/validation/ValidationUtil.java   |   2 +-
 .../AbstractConfigurationController.java           |  11 +-
 .../ClusterConfigurationController.java            |  55 ++++--
 .../configuration/NodeConfigurationController.java |  59 ++++--
 .../rest/configuration/PresentationsFactory.java   |   2 +-
 .../exception/ConfigPathUnrecognizedException.java |  27 ---
 .../exception/InvalidConfigFormatException.java    |  27 ---
 .../ConfigPathUnrecognizedExceptionHandler.java    |  44 -----
 .../ConfigurationValidationExceptionHandler.java   |  50 -----
 .../InvalidConfigFormatExceptionHandler.java       |  43 -----
 .../exception/handler/package-info.java            |  23 ---
 .../rest/configuration/exception/package-info.java |  22 ---
 .../configuration/ConfigurationChangerTest.java    |   2 +-
 .../ConfigurationPresentationTest.java             |   2 +-
 .../validation/ValidationUtilTest.java             |  11 +-
 .../ConfigurationControllerBaseTest.java           |  31 +--
 .../internal/rest/configuration/TestFactory.java   |   2 +-
 modules/rest-api/pom.xml                           |  50 +++++
 .../internal/rest/{api => }/RestFactory.java       |   2 +-
 .../ignite/internal/rest/api/ErrorResult.java      |  65 -------
 .../ignite/internal/rest/api/InvalidParam.java}    |  42 +++--
 .../apache/ignite/internal/rest/api/Problem.java   | 209 +++++++++++++++++++++
 .../internal/rest/api/ValidationProblem.java       | 111 +++++++++++
 .../ignite/internal/rest/constants/HttpCode.java}  |  50 ++---
 .../ignite/internal/rest/constants/MediaType.java} |  28 ++-
 .../exception/handler/IgniteExceptionHandler.java  |  72 +++++++
 .../ignite/internal/rest/problem/Builder.java}     |  10 +-
 .../rest/problem/HttpProblemResponse.java}         |  35 ++--
 .../handler/IgniteExceptionHandlerTest.java        |  91 +++++++++
 .../rest/openapi/openapi.properties                |   8 +-
 modules/rest/openapi/openapi.yaml                  | 121 +++++++++++-
 modules/rest/pom.xml                               |   4 +-
 .../apache/ignite/internal/rest/RestComponent.java |   1 -
 .../org/apache/ignite/internal/app/IgniteImpl.java |   2 +-
 .../configuration/ColumnTypeValidatorImpl.java     |   4 +-
 .../configuration/KnownDataStorageValidator.java   |  12 +-
 .../schema/configuration/TableValidatorImpl.java   |   6 +-
 .../ExistingDataStorageValidator.java              |  14 +-
 .../PageMemoryDataRegionValidatorImpl.java         |  21 ++-
 .../RocksDbDataRegionValidatorImpl.java            |  12 +-
 55 files changed, 1065 insertions(+), 574 deletions(-)
 rename 
modules/{configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/handler/IgniteExceptionHandler.java
 => 
cluster-management/src/main/java/org/apache/ignite/internal/cluster/management/rest/exception/handler/IgniteInternalCheckedExceptionHandler.java}
 (54%)
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/ConfigPathUnrecognizedException.java
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/InvalidConfigFormatException.java
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/handler/ConfigPathUnrecognizedExceptionHandler.java
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/handler/ConfigurationValidationExceptionHandler.java
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/handler/InvalidConfigFormatExceptionHandler.java
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/handler/package-info.java
 delete mode 100644 
modules/configuration/src/main/java/org/apache/ignite/internal/rest/configuration/exception/package-info.java
 rename modules/rest-api/src/main/java/org/apache/ignite/internal/rest/{api => 
}/RestFactory.java (95%)
 delete mode 100644 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/ErrorResult.java
 copy 
modules/{network/src/test/java/org/apache/ignite/internal/network/serialization/marshal/IntHolder.java
 => 
rest-api/src/main/java/org/apache/ignite/internal/rest/api/InvalidParam.java} 
(55%)
 create mode 100644 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/Problem.java
 create mode 100644 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/ValidationProblem.java
 copy 
modules/{configuration-api/src/main/java/org/apache/ignite/configuration/validation/ValidationIssue.java
 => 
rest-api/src/main/java/org/apache/ignite/internal/rest/constants/HttpCode.java} 
(54%)
 copy 
modules/{transactions/src/main/java/org/apache/ignite/internal/tx/Waiter.java 
=> 
rest-api/src/main/java/org/apache/ignite/internal/rest/constants/MediaType.java}
 (66%)
 create mode 100644 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/exception/handler/IgniteExceptionHandler.java
 copy modules/{core/src/main/java/org/apache/ignite/internal/manager/Event.java 
=> rest-api/src/main/java/org/apache/ignite/internal/rest/problem/Builder.java} 
(79%)
 copy 
modules/{client-common/src/main/java/org/apache/ignite/internal/jdbc/proto/event/JdbcQueryCloseResult.java
 => 
rest-api/src/main/java/org/apache/ignite/internal/rest/problem/HttpProblemResponse.java}
 (52%)
 create mode 100644 
modules/rest-api/src/test/java/org/apache/ignite/internal/rest/exception/handler/IgniteExceptionHandlerTest.java
 copy docs/run.sh => modules/rest/openapi/openapi.properties (88%)
 mode change 100755 => 100644

Reply via email to