You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by if...@apache.org on 2020/04/29 07:23:09 UTC

[cassandra-in-jvm-dtest-api] branch release updated (4eb2cca -> f2dbed3)

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

ifesdjeen pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/cassandra-in-jvm-dtest-api.git.


 discard 4eb2cca  [maven-release-plugin] prepare for next development iteration
 discard 1983e78  [maven-release-plugin] prepare release 0.0.1
     add c77ec66  [maven-release-plugin] prepare release 0.0.1
     add 6fab1a7  Revert "[maven-release-plugin] prepare release 0.0.1"
     add 7a2f029  [maven-release-plugin] prepare release 0.0.1
     add 9da7b7a  [maven-release-plugin] prepare for next development iteration
     add e620eb3  Reformat code according to Apache Cassandra styleguide
     add b4482d8  Add information about release process
     add ced1ff7  NodeToolResult was modified on trunk to produce better errors and to allow Any style message checks for errors, add them here.
     add 29d055b  Add information about publishing snapshots
     add d59833f  Make shared class filter for InstanceClassLoader pluggable
     add 7ddfe52  Support for replacing logback with alternate logger config (like log4j2)
     add 50fdfef  Cluster builder should be provided to the factory and expose state
     add b41ea49  Fix compile errors
     add 43e6d54  Revert "Cluster builder should be provided to the factory and expose state"
     add 326045f  Cluster builder should be provided to the factory and expose state
     add cc3e43c  In-jvm dtest IInstance and ICoordinator should use QueryResult as the base API
     add f2dbed3  Add CHANGES file

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   (4eb2cca)
            \
             N -- N -- N   refs/heads/release (f2dbed3)

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.

No new revisions were added by this update.

Summary of changes:
 CHANGES.txt                                        |   7 +
 README.md                                          |  53 ++++++
 pom.xml                                            |  24 +++
 .../distributed/api/ConsistencyLevel.java          |   3 +-
 .../apache/cassandra/distributed/api/ICluster.java |  41 +++--
 .../cassandra/distributed/api/ICoordinator.java    |  32 +++-
 .../cassandra/distributed/api/IInstance.java       |  25 ++-
 .../cassandra/distributed/api/IInstanceConfig.java |  17 +-
 .../distributed/api/IInvokableInstance.java        |  42 ++---
 .../distributed/api/IIsolatedExecutor.java         |  31 ++--
 .../apache/cassandra/distributed/api/IListen.java  |   5 +-
 .../apache/cassandra/distributed/api/IMessage.java |   6 +-
 .../cassandra/distributed/api/IMessageFilters.java |  34 +++-
 .../distributed/api/IUpgradeableInstance.java      |   3 +-
 .../cassandra/distributed/api/NodeToolResult.java  |  96 ++++++++--
 .../cassandra/distributed/api/QueryResult.java     |  97 +++-------
 .../cassandra/distributed/api/QueryResults.java    | 204 +++++++++++++++++++++
 .../org/apache/cassandra/distributed/api/Row.java  | 133 ++++++++++++--
 .../{QueryResult.java => SimpleQueryResult.java}   |  52 +++---
 .../cassandra/distributed/api/TokenSupplier.java   |   6 +-
 .../shared/{Builder.java => AbstractBuilder.java}  | 176 +++++++++++-------
 .../cassandra/distributed/shared/AssertUtils.java  |  69 +++++--
 .../distributed/shared/DistributedTestBase.java    |   7 +-
 .../cassandra/distributed/shared/FutureUtils.java  |  95 ++++++++++
 .../distributed/shared/InstanceClassLoader.java    |  41 +++--
 .../distributed/shared/MessageFilters.java         |   8 +-
 .../distributed/shared/ThrowingRunnable.java       |   4 +-
 .../cassandra/distributed/shared/Versions.java     |  29 +--
 .../cassandra/distributed/api/QueryResultTest.java | 198 ++++++++++++++++++++
 29 files changed, 1211 insertions(+), 327 deletions(-)
 create mode 100644 CHANGES.txt
 create mode 100644 src/main/java/org/apache/cassandra/distributed/api/QueryResults.java
 copy src/main/java/org/apache/cassandra/distributed/api/{QueryResult.java => SimpleQueryResult.java} (76%)
 rename src/main/java/org/apache/cassandra/distributed/shared/{Builder.java => AbstractBuilder.java} (63%)
 create mode 100644 src/main/java/org/apache/cassandra/distributed/shared/FutureUtils.java
 create mode 100644 src/test/java/org/apache/cassandra/distributed/api/QueryResultTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org