Fix two more cases of error(e, true)

This commit is contained in:
A.J. Beamon 2022-03-04 12:44:52 -08:00
parent 1555c0e2aa
commit 11fbd1564e

View File

@ -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));
} }
} }