-
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.
75632: execstats: fix flakey TestTraceAnalyzer r=yuzefovich a=adityamaru Fixes: #75546 Release note: None 75662: githooks: avoid accidental branch push to origin r=dt a=dt Branches are expected to be pushed to forks instead. Release note: none. 75666: kvstreamer: fix the tracing of async requests r=yuzefovich a=yuzefovich Previously, we forgot to specify a span option when running asynchronous requests and ended up using the default (which is `FollowsFromSpan` meaning that the span won't get included into the parent). The correct option to use is `ChildSpan` so that the DistSender tracing is included into the Streamer traces which is what this commit does. Release note: None 75669: bazel: bump size of `physicalplan` test r=rail a=rickystewart Release note: None Co-authored-by: Aditya Maru <[email protected]> Co-authored-by: David Taylor <[email protected]> Co-authored-by: Yahor Yuzefovich <[email protected]> Co-authored-by: Ricky Stewart <[email protected]>
- Loading branch information
Showing
5 changed files
with
66 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# -u: we want the variables to be properly assigned. | ||
# -o pipefail: we want to test the result of pipes. | ||
# No -e because we have failing commands and that's OK. | ||
set -uo pipefail | ||
|
||
# deny push of a head but not a tag to cockroachdb/cochroach ssh and http URLs. | ||
while read local_ref local_sha remote_ref remote_sha | ||
do | ||
if [[ "$remote_ref" == "refs/heads/"* ]] && [[ "$2" == *"cockroachdb/cockroach.git"* ]]; then | ||
echo "Refusing to push to $remote_ref on $2." | ||
echo "Push your branch to your own fork and open a PR from there." | ||
echo "If you just want to see what CI thinks, you can push branch:refs/ci/branch to trigger a CI run." | ||
echo "If this is an emergency or unusual circumstance that requires a branch on origin, push with --no-verify." | ||
exit 1 | ||
fi | ||
done | ||
|
||
exit 0 |
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