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
151202: catalog/lease: fix hang on range feed restart r=fqazi a=fqazi
Previously, the test was hanging because the lease manager mutex was held while closing the range feed. While a real failure would likely occur in the middle of a range feed callback during a restart, the synthetic scenario in this test made a hang possible. To avoid this, the lease manager lock is now released before closing the range feed.
Fixes: #150679Fixes: #151088
Release note: None
151415: roachtest: deflake psycopg r=fqazi a=fqazi
Previously, the DNS tests would flake based on the order of hostnames in the output. This patch places these tests on the ignore list.
Fixes: #151379Fixes: #150651
Release note: None
Co-authored-by: Faizan Qazi <[email protected]>
Copy file name to clipboardExpand all lines: pkg/cmd/roachtest/tests/psycopg_blocklist.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ package tests
19
19
varpsycopgBlockList=blocklist{}
20
20
21
21
varpsycopgIgnoreList=blocklist{
22
+
`tests.test_dns_srv.test_srv[host=_pg._tcp.bar.com-host=db1.example.com,db4.example.com,db3.example.com,db2.example.com port=5432,5432,5433,5432-None]`: "flaky; see #151379",
23
+
`tests.test_dns_srv.test_srv_async[asyncio-host=_pg._tcp.bar.com-host=db1.example.com,db4.example.com,db3.example.com,db2.example.com port=5432,5432,5433,5432-None]`: "flaky; see #151379",
0 commit comments