mirror of
https://github.com/apple/foundationdb.git
synced 2025-05-14 18:02:31 +08:00
Fix two more cases of error(e, true)
This commit is contained in:
parent
1555c0e2aa
commit
11fbd1564e
@ -161,7 +161,7 @@ struct SidebandSingleWorkload : TestWorkload {
|
|||||||
wait(store(val2, tr2.get(messageKey)));
|
wait(store(val2, tr2.get(messageKey)));
|
||||||
break;
|
break;
|
||||||
} catch (Error& e) {
|
} catch (Error& e) {
|
||||||
TraceEvent("DebugSidebandNoCacheError").error(e, true);
|
TraceEvent("DebugSidebandNoCacheError").errorUnsuppressed(e);
|
||||||
wait(tr2.onError(e));
|
wait(tr2.onError(e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -178,7 +178,7 @@ struct SidebandSingleWorkload : TestWorkload {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
} catch (Error& e) {
|
} catch (Error& e) {
|
||||||
TraceEvent("DebugSidebandCheckError").error(e, true);
|
TraceEvent("DebugSidebandCheckError").errorUnsuppressed(e);
|
||||||
wait(tr.onError(e));
|
wait(tr.onError(e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user