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
1 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ struct SidebandSingleWorkload : TestWorkload {
wait(store(val2, tr2.get(messageKey)));
break;
} catch (Error& e) {
TraceEvent("DebugSidebandNoCacheError").error(e, true);
TraceEvent("DebugSidebandNoCacheError").errorUnsuppressed(e);
wait(tr2.onError(e));
}
}
@ -178,7 +178,7 @@ struct SidebandSingleWorkload : TestWorkload {
}
break;
} catch (Error& e) {
TraceEvent("DebugSidebandCheckError").error(e, true);
TraceEvent("DebugSidebandCheckError").errorUnsuppressed(e);
wait(tr.onError(e));
}
}