You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
circuit.fallback(v -> {
// Executed when the circuit is opened
LOG.info("fallback not work for timeout"); //code not fall this place.
return "";
});
circuit.execute(promise -> {
try {
Thread.sleep(1000); //stay here long time more than config in option just 100ms
} catch (InterruptedException e) {
}
promise.complete("OK");
});
Thanks,
Huy Bui.
The text was updated successfully, but these errors were encountered:
Hi Team
Help check option setTimeout, It is seem to me not work. I implemented on vertx 3.8.1. My brief code as below:
Thanks,
Huy Bui.
The text was updated successfully, but these errors were encountered: