-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
96261: cli: loss of quorum recovery int-test for half online mode r=erikgrinaker a=aliher1911 This commit adds integration test for loss of quorum recovery in half online mode. Its functionality largely mirrors behaviour of offline quorum recovery test. Release note: None Fixes #93052 97118: roachtest: fix fetching of debug zip and add dmesg flag r=herkolategan a=renatolabs **roachtest: fix fetching of debug zip** The roachtest logic to fetch the debug zip after a failure iterates over each node in the cluster spec for that test and attempts to run the `debug zip` command, returning once it succeeds on any node. The idea is that at that stage in the test, there's no way to know which node is alive so every node is attempted. However, the actual `Run` command executed used to use `c.All()`, meaning that, in practice, it would fail if _any_ node failed to run the `debug zip` command. One common scenario where this bug would come to the surface is during tests that don't upload the `cockroach` binary to every node, maybe because one of the nodes is there to run a `./workload` command exclusively. In those cases, we would fail to fetch the `debug.zip` just because the workload node didn't have the cockroach binary (see #97100, for example). This commit fixes the bug/typo by running the `./cockroach debug zip` command on each node individually. **roachtest: pass -T flag to dmesg** By default, the timestamps displayed on the `dmesg` output are relative to the kernel's boot time. This makes it harder to correlate events in there with test events. This changes artifact collection to run `dmesg -T` instead, which makes dmesg use human readable timestamps. 97170: ccl/kvccl/kvfollowerreadsccl: skip TestSecondaryTenantFollowerReadsRouting r=arulajmani a=pavelkalinnikov Refs: #95338 Reason: flaky test Generated by bin/skip-test. Release justification: non-production code changes Epic: None Release note: None Co-authored-by: Oleg Afanasyev <[email protected]> Co-authored-by: Renato Costa <[email protected]> Co-authored-by: Pavel Kalinnikov <[email protected]>
- Loading branch information
Showing
3 changed files
with
197 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters