Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ydb-platform/ydb-go-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8085c49b03cb7e6722fdbe89dcd366bb5bbb10b5
Choose a base ref
..
head repository: ydb-platform/ydb-go-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 05674818fc655be5ecb4173d2bda5f12a4478a06
Choose a head ref
Showing with 1 addition and 0 deletions.
  1. +1 −0 log/context_test.go
1 change: 1 addition & 0 deletions log/context_test.go
Original file line number Diff line number Diff line change
@@ -71,6 +71,7 @@ func TestWithNamesRaceRegression(t *testing.T) {
finished := make(chan bool)
for i := 0; i < count; i++ {
go func(index int) {
<-start
res[index] = WithNames(ctx, strconv.Itoa(index))
finished <- true
}(i)