Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Upgrade to jeromq 5.2 #37

Merged
merged 1 commit into from Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion sawtooth-sdk-transaction-processor/pom.xml
Expand Up @@ -49,7 +49,7 @@
<dependency>
<groupId>org.zeromq</groupId>
<artifactId>jeromq</artifactId>
<version>0.3.6</version>
<version>0.5.2</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down
Expand Up @@ -279,7 +279,7 @@ public void run() {
} finally {
lock.unlock();
}
ZLoop eventLoop = new ZLoop();
ZLoop eventLoop = new ZLoop(this.context);
ZMQ.PollItem pollItem = new ZMQ.PollItem(socket, ZMQ.Poller.POLLIN);
eventLoop.addPoller(pollItem, new Receiver(futures, receiveQueue), new Object());
eventLoop.start();
Expand Down