Fix the bug that parameters are not carried when exiting entries in SentinelReactorSubscriber
This commit is contained in:
parent
18d8b4c8a7
commit
0508c92665
|
|
@ -160,7 +160,7 @@ public class SentinelReactorSubscriber<T> extends InheritableBaseSubscriber<T> {
|
||||||
|
|
||||||
private boolean tryCompleteEntry() {
|
private boolean tryCompleteEntry() {
|
||||||
if (currentEntry != null && entryExited.compareAndSet(false, true)) {
|
if (currentEntry != null && entryExited.compareAndSet(false, true)) {
|
||||||
currentEntry.exit();
|
currentEntry.exit(1, entryConfig.getArgs());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue