mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-03 03:41:53 +08:00
Expose all errors from all futures joint.
This commit is contained in:
parent
dc1700d728
commit
736f436712
@ -3274,11 +3274,8 @@ ACTOR Future<bool> asyncPrepareVersionsForCommit_impl(StorageServerDisk* self, S
|
||||
}
|
||||
if (stopEarly.isReady()) {
|
||||
// Previous commit is done.
|
||||
if (durable.isError()) {
|
||||
throw durable.getError();
|
||||
}
|
||||
if (durableMinDelay.isError()) {
|
||||
throw durableMinDelay.getError();
|
||||
if (stopEarly.isError()) {
|
||||
throw stopEarly.getError();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user