Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add clarification to TestConcurrentEndEntityOperations #1071

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions database/queries_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func waitAndMakeEE(j int, db *Handler, wg *sync.WaitGroup, t *testing.T, signerI
label, _, err = db.GetLabelOfLatestEE(signerID, 15*time.Second)
switch err {
case nil:
t.Logf("TestConcurrentEndEntityOperations: routine %d is returning end-entity %q", j, label)
t.Logf("TestConcurrentEndEntityOperations: routine %d is returning end-entity %q (after taking the transaction)", j, label)
goto releaseLock
case ErrNoSuitableEEFound:
break
Expand All @@ -95,7 +95,7 @@ func waitAndMakeEE(j int, db *Handler, wg *sync.WaitGroup, t *testing.T, signerI
t.Fatalf("failed to end end-entity db operations: %v", err)
}
case nil:
t.Logf("TestConcurrentEndEntityOperations: routine %d is returning end-entity %q", j, label)
t.Logf("TestConcurrentEndEntityOperations: routine %d is returning end-entity %q (without taking the transaction)", j, label)
default:
t.Fatal(err)
}
Expand Down
Loading