mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Open gate if request failed
This commit is contained in:
parent
2ca5fdc475
commit
f64a0baff3
3 changed files with 3 additions and 0 deletions
|
@ -155,6 +155,7 @@ public class P2PNetworkLoad extends Metric implements MessageListener, SetupList
|
|||
|
||||
@Override
|
||||
public void onFailure(@NotNull Throwable throwable) {
|
||||
gate.proceed();
|
||||
log.error(
|
||||
"Sending PreliminaryDataRequest failed. That is expected if the peer is offline.\n\tException="
|
||||
+ throwable.getMessage());
|
||||
|
|
|
@ -150,6 +150,7 @@ public class P2PNetworkMessageSnapshot extends Metric implements MessageListener
|
|||
|
||||
@Override
|
||||
public void onFailure(@NotNull Throwable throwable) {
|
||||
gate.proceed();
|
||||
log.error(
|
||||
"Sending PreliminaryDataRequest failed. That is expected if the peer is offline.\n\tException="
|
||||
+ throwable.getMessage());
|
||||
|
|
|
@ -121,6 +121,7 @@ public class P2PRoundTripTime extends Metric implements MessageListener, SetupLi
|
|||
|
||||
@Override
|
||||
public void onFailure(@NotNull Throwable throwable) {
|
||||
gate.proceed();
|
||||
log.error("Sending ping failed. That is expected if the peer is offline.\n\tException="
|
||||
+ throwable.getMessage());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue