You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by aa...@apache.org on 2022/07/19 07:19:31 UTC

[rocketmq-clients] branch java_dev updated (905b209 -> fcaca09)

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

aaronai pushed a change to branch java_dev
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git


    omit 905b209  Polish code
    omit 98d6727  Check maxMessageNum before receiving message
    omit 49f8308  Bugfix: forget to update ProducerSettings#topics
    omit cf61dc7  Add more test
     add e20e51a  Java: use independent clientManager for each client (#55)
     add 3e5ecf8  Use ClientManager per Client strategy (#54)
     add 3c510bf  Bugfix: forget to start clientManager
     new fcaca09  WiP

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   (905b209)
            \
             N -- N -- N   refs/heads/java_dev (fcaca09)

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:
 cpp/examples/ExampleProducer.cpp                   |  4 +-
 cpp/source/client/ClientManagerFactory.cpp         | 62 ----------------------
 cpp/source/client/include/ClientManagerFactory.h   | 57 --------------------
 cpp/source/rocketmq/ClientImpl.cpp                 |  8 +--
 cpp/source/rocketmq/PushConsumerImpl.cpp           |  1 -
 cpp/source/rocketmq/include/ClientImpl.h           |  9 ++++
 .../rocketmq/client/java/impl/ClientImpl.java      |  7 +--
 .../java/impl/producer/ProducerImplTest.java       |  7 ++-
 java/pom.xml                                       | 39 ++++++++------
 9 files changed, 47 insertions(+), 147 deletions(-)
 delete mode 100644 cpp/source/client/ClientManagerFactory.cpp
 delete mode 100644 cpp/source/client/include/ClientManagerFactory.h


[rocketmq-clients] 01/01: WiP

Posted by aa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aaronai pushed a commit to branch java_dev
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git

commit fcaca09b1d451c8d68629ca8d0e009869a85a39a
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Tue Jul 19 15:19:06 2022 +0800

    WiP
---
 java/pom.xml | 37 ++++++++++++++++++++++---------------
 1 file changed, 22 insertions(+), 15 deletions(-)

diff --git a/java/pom.xml b/java/pom.xml
index 6824572..cccce87 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -28,7 +28,7 @@
            ~  1. Whether it is essential, because the current shaded jar is fat enough.
            ~  2. Make sure that it is compatible with Java 8.
          -->
-        <rocketmq-proto.version>2.0.0-SNAPSHOT</rocketmq-proto.version>
+        <rocketmq-proto.version>2.0.0</rocketmq-proto.version>
         <protobuf.version>3.19.2</protobuf.version>
         <grpc.version>1.47.0</grpc.version>
         <guava.version>31.1-jre</guava.version>
@@ -54,20 +54,20 @@
         <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
     </properties>
 
-    <repositories>
-        <repository>
-            <id>nexus</id>
-            <url>https://repository.apache.org/content/groups/public/</url>
-            <releases>
-                <enabled>true</enabled>
-                <updatePolicy>always</updatePolicy>
-            </releases>
-            <snapshots>
-                <enabled>true</enabled>
-                <updatePolicy>always</updatePolicy>
-            </snapshots>
-        </repository>
-    </repositories>
+<!--    <repositories>-->
+<!--        <repository>-->
+<!--            <id>nexus</id>-->
+<!--            <url>https://repository.apache.org/content/groups/public/</url>-->
+<!--            <releases>-->
+<!--                <enabled>true</enabled>-->
+<!--                <updatePolicy>always</updatePolicy>-->
+<!--            </releases>-->
+<!--            <snapshots>-->
+<!--                <enabled>true</enabled>-->
+<!--                <updatePolicy>always</updatePolicy>-->
+<!--            </snapshots>-->
+<!--        </repository>-->
+<!--    </repositories>-->
 
     <dependencyManagement>
         <dependencies>
@@ -225,6 +225,13 @@
         </dependencies>
     </dependencyManagement>
 
+    <repositories>
+        <repository>
+            <id>staged-releases</id>
+            <url>https://repository.apache.org/content/repositories/orgapacherocketmq-1091</url>
+        </repository>
+    </repositories>
+
     <build>
         <plugins>
             <plugin>