forked from signalapp/Signal-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a debug version of Lettuce to track down the cause of redis/lettu…
- Loading branch information
1 parent
7cf50a1
commit 4d5fbec
Showing
13 changed files
with
227 additions
and
1 deletion.
There are no files selected for viewing
Binary file added
BIN
+1.05 MB
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG-sources.jar
Binary file not shown.
1 change: 1 addition & 0 deletions
1
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG-sources.jar.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
91492a35e08606565fe9e5c9d481c8d2 |
1 change: 1 addition & 0 deletions
1
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG-sources.jar.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
572687ff55c34200f190e2f0b288592b0d44140f |
Binary file added
BIN
+1.59 MB
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG.jar
Binary file not shown.
1 change: 1 addition & 0 deletions
1
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG.jar.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
66b60f16323cbe78deb46241c6a6e1ec |
1 change: 1 addition & 0 deletions
1
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG.jar.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
283174af342b80192d65a54a462952f6f15af538 |
196 changes: 196 additions & 0 deletions
196
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>io.lettuce</groupId> | ||
<artifactId>lettuce-core</artifactId> | ||
<version>6.0.1.DEBUG</version> | ||
<name>Lettuce</name> | ||
<description>Advanced and thread-safe Java Redis client for synchronous, asynchronous, and | ||
reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs | ||
and much more.</description> | ||
<url>http://github.com/lettuce-io/lettuce-core</url> | ||
<organization> | ||
<name>lettuce.io</name> | ||
<url>https://lettuce.io</url> | ||
</organization> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<id>mp911de</id> | ||
<name>Mark Paluch</name> | ||
</developer> | ||
<developer> | ||
<id>will</id> | ||
<name>Will Glozer</name> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:https://github.com/lettuce-io/lettuce-core.git</connection> | ||
<developerConnection>scm:git:https://github.com/lettuce-io/lettuce-core.git</developerConnection> | ||
<tag>6.0.1.RELEASE</tag> | ||
<url>http://github.com/lettuce-io/lettuce-core</url> | ||
</scm> | ||
<issueManagement> | ||
<system>Github</system> | ||
<url>https://github.com/lettuce-io/lettuce-core/issues</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>Travis CI</system> | ||
<url>https://travis-ci.org/lettuce-io/lettuce-core</url> | ||
</ciManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-common</artifactId> | ||
<version>4.1.53.Final</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-handler</artifactId> | ||
<version>4.1.53.Final</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-transport</artifactId> | ||
<version>4.1.53.Final</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.projectreactor</groupId> | ||
<artifactId>reactor-core</artifactId> | ||
<version>3.3.11.RELEASE</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-pool2</artifactId> | ||
<version>2.8.1</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jetbrains.kotlin</groupId> | ||
<artifactId>kotlin-stdlib</artifactId> | ||
<version>1.3.72</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jetbrains.kotlinx</groupId> | ||
<artifactId>kotlinx-coroutines-reactive</artifactId> | ||
<version>1.3.8</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jetbrains.kotlinx</groupId> | ||
<artifactId>kotlinx-coroutines-jdk8</artifactId> | ||
<version>1.3.8</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-tcnative</artifactId> | ||
<version>2.0.34.Final</version> | ||
<classifier>linux-x86_64</classifier> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-transport-native-epoll</artifactId> | ||
<version>4.1.53.Final</version> | ||
<classifier>linux-x86_64</classifier> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-transport-native-kqueue</artifactId> | ||
<version>4.1.53.Final</version> | ||
<classifier>osx-x86_64</classifier> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.zipkin.brave</groupId> | ||
<artifactId>brave</artifactId> | ||
<version>5.12.7</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.latencyutils</groupId> | ||
<artifactId>LatencyUtils</artifactId> | ||
<version>2.0.3</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hdrhistogram</groupId> | ||
<artifactId>HdrHistogram</artifactId> | ||
<version>2.1.12</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.reactivex</groupId> | ||
<artifactId>rxjava</artifactId> | ||
<version>1.3.8</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.reactivex</groupId> | ||
<artifactId>rxjava-reactive-streams</artifactId> | ||
<version>1.2.1</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.reactivex.rxjava2</groupId> | ||
<artifactId>rxjava</artifactId> | ||
<version>2.2.20</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.reactivex.rxjava3</groupId> | ||
<artifactId>rxjava</artifactId> | ||
<version>3.0.7</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.enterprise</groupId> | ||
<artifactId>cdi-api</artifactId> | ||
<version>2.0.SP1</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.inject</groupId> | ||
<artifactId>javax.inject</artifactId> | ||
<version>1</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</artifactId> | ||
<version>3.0.2</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
</project> |
1 change: 1 addition & 0 deletions
1
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG.pom.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
aa5d10bb1f8ef490c73a58735d10336d |
1 change: 1 addition & 0 deletions
1
service/lib/io/lettuce/lettuce-core/6.0.1.DEBUG/lettuce-core-6.0.1.DEBUG.pom.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5e59fa3bdf02adb22ca1db4cf7dec18937881e60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata> | ||
<groupId>io.lettuce</groupId> | ||
<artifactId>lettuce-core</artifactId> | ||
<versioning> | ||
<release>6.0.1.DEBUG</release> | ||
<versions> | ||
<version>6.0.1.DEBUG</version> | ||
</versions> | ||
<lastUpdated>20201105203315</lastUpdated> | ||
</versioning> | ||
</metadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d52c51eca1241f14802fb8828c1d5713 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8b7a50b4ef180d8ce0eaea03742fe030820a3038 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters