You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an unrelated PR I reliably see the "testrace" CI target failing in TestDockerC (the first of the docker tests: the specific test doesn't matter, the issue repros with all of them) with the stack trace below.
This corresponds to the following go code failing:
if*cockroachImage==defaultImage&&!exists(*CockroachBinary) {
log.Fatalf(ctx, "\"%s\": does not exist", *CockroachBinary)
}
The fatal message suggests that the CockroachBinary string is empty.
87614: sql/opt/norm: propagate kv errors from cast folding r=ajwerner a=ajwerner
Swallowing KV errors here leads to incorrect results. Writes can be missed and serializability can be silently violated. This comes up in the context of the randomized schema change testing.
May deal with #85677
relates to #80764
Release note: None
87646: backupccl: deflake backup tests r=adityamaru a=adityamaru
See individual commits.
Release note: None
87667: server: clean up some logging r=ajwerner a=ajwerner
For one, this fixes a format directive issue in the first line. It also stops rendering some arguments to strings directly so that redaction works correctly.
Release note: None
87702: kvserver: explain our use of (*raftGroup).ReportSnapshot r=andrewbaptist a=tbg
Closes#87581.
Release note: None
87713: ci: skip "integration"-style tests in testrace r=knz a=rickystewart
Closes#87700.
Release note: None
Co-authored-by: Andrew Werner <[email protected]>
Co-authored-by: adityamaru <[email protected]>
Co-authored-by: Tobias Grieger <[email protected]>
Co-authored-by: Ricky Stewart <[email protected]>
Describe the problem
In an unrelated PR I reliably see the "testrace" CI target failing in
TestDockerC
(the first of the docker tests: the specific test doesn't matter, the issue repros with all of them) with the stack trace below.This corresponds to the following go code failing:
The fatal message suggests that the CockroachBinary string is empty.
Example here https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Ci_Tests_Testrace/6409520?showRootCauses=false&expandBuildChangesSection=true&expandBuildTestsSection=true
Jira issue: CRDB-19489
The text was updated successfully, but these errors were encountered: