Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

redis支持集群密码 #40

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
使用guava ConcurrentHashSet解决core.push.BroadcastPushTask的多线程ConcurrentM…
…odificationException异常
  • Loading branch information
dengly committed May 23, 2019
commit 7891742f2081da10f559e1cebb08c3b93154eff1
2 changes: 1 addition & 1 deletion mpush-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion mpush-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

package com.mpush.core.push;

import com.google.common.collect.Sets;
import com.mpush.api.message.Message;
import com.mpush.api.common.Condition;
import com.mpush.api.connection.Connection;
Expand Down Expand Up @@ -51,7 +52,7 @@ public final class BroadcastPushTask implements PushTask {

private final TimeLine timeLine = new TimeLine();

private final Set<String> successUserIds = new HashSet<>(1024);
private final Set<String> successUserIds = Sets.newConcurrentHashSet();

private final FlowControl flowControl;

Expand Down
2 changes: 1 addition & 1 deletion mpush-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion mpush-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mpush-zk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>mpush</artifactId>
<groupId>com.github.mpusher</groupId>
<version>0.8.1</version>
<version>0.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down