-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ToxicStub allow to unblocking write to Output
It could happen when Link has no reciever and there is some packets in buffer. It produces deadlock. Dynamic test with latest version of toxiproxy
- Loading branch information
Showing
11 changed files
with
358 additions
and
19 deletions.
There are no files selected for viewing
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
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
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
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
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
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,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<hazelcast xmlns="http://www.hazelcast.com/schema/config" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.hazelcast.com/schema/config | ||
http://www.hazelcast.com/schema/config/hazelcast-config-5.1.xsd"> | ||
|
||
<properties> | ||
<property name="hazelcast.merge.next.run.delay.seconds">15</property> | ||
<property name="hazelcast.merge.first.run.delay.seconds">20</property> | ||
<property name="hazelcast.partition.migration.chunks.enabled">false</property> | ||
<property name="hazelcast.heartbeat.failuredetector.type">deadline</property> | ||
<property name="hazelcast.heartbeat.interval.seconds">3</property> | ||
<property name="hazelcast.max.no.heartbeat.seconds">10</property> | ||
</properties> | ||
|
||
<network> | ||
<public-address>member-proxy:${proxyPort}</public-address> | ||
<port auto-increment="false">5701</port> | ||
<join> | ||
<auto-detection enabled="false"/> | ||
<tcp-ip enabled="true"> | ||
<member-list> | ||
<member>member-proxy:${proxyPort0}</member> | ||
<member>member-proxy:${proxyPort1}</member> | ||
<member>member-proxy:${proxyPort2}</member> | ||
</member-list> | ||
</tcp-ip> | ||
</join> | ||
</network> | ||
</hazelcast> |
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
Oops, something went wrong.