forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
98601: ui: add PGCode to admin api errors r=j82w a=j82w Adding the PGCode makes it easy to identify the underlying issue of why the request failed. old error: ``` RequestError: An internal server error has occurred. Please check your CockroachDB logs for more details. ``` new error ``` RequestError: An internal server error has occurred. Please check your CockroachDB logs for more details. Error Code: 53200 ``` <img width="2058" alt="Screenshot 2023-03-14 at 2 51 57 PM" src="https://user-images.githubusercontent.com/8868107/225108075-5db442da-699f-487b-852c-732eb030f644.png"> Epic: none Closes: cockroachdb#98596 Release note: none 98715: kvserver: deflake and unskip split race uninit rhs r=nvanbenschoten a=kvoli `TestStoreRangeSplitRaceUninitializedRHS` was skipped some time ago, in mid 2021 (cockroachdb#67082). The test was skipped due to flakes that appeared related to untimely test cluster startup. This commit unskips the test and makes minor adjustments in order to be current with semantics of Raft transport. Without these adjustments, the `MsgVote` sent every microsecond with the intention of triggering a race, would completely fill up the Raft transport send queue. Once the queue was full, the test would fail as requests are dropped. This commit updates the `MsgVote` send loop logic to not require every `MsgVote` request to be sent for the test to succeed. Resolves: cockroachdb#66480 Release note: None Co-authored-by: j82w <[email protected]> Co-authored-by: Austen McClernon <[email protected]>
- Loading branch information
Showing
4 changed files
with
51 additions
and
9 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
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