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

all: fix some typos #9815

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion doc/releasenotes/12_0_0_release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Various command flags have been deprecated and new variants provided.
* Adds some more orchestrator tests to vtorc #8535
#### Query Serving
* increase conn killer check to double the tx timeout value #8649
* Added UNION testcases and auxilary code for running tests #8797
* Added UNION testcases and auxiliary code for running tests #8797
* fixed regression in v3 for grouping by integer functions #8856
#### VTAdmin
* [vtadmin] Add a vtctld Dialer unit test #8455
Expand Down
8 changes: 4 additions & 4 deletions examples/are-you-alive/cmd/are-you-alive/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,14 +319,14 @@ func main() {
writer := runner{
connString: endpoint.ConnectionString,
fn: writeNextRecord,
errMessage: "Recieved error writing next record",
errMessage: "Received error writing next record",
opsPerSecond: endpoint.TargetWritesPerSecond,
}
go writer.run()
deleter := runner{
connString: endpoint.ConnectionString,
fn: deleteLastRecordIfNecessary,
errMessage: "Recieved error deleting last record",
errMessage: "Received error deleting last record",
opsPerSecond: 100, // This is based on target "dataset_size", and will not make a query if not needed. TODO: Actually tune this in a reasonable way after redesigning the schema?
}
go deleter.run()
Expand All @@ -335,7 +335,7 @@ func main() {
reader := runner{
connString: endpoint.ConnectionString,
fn: readRandomRecord,
errMessage: "Recieved error reading record",
errMessage: "Received error reading record",
opsPerSecond: endpoint.TargetQueriesPerSecond,
}
go reader.run()
Expand All @@ -344,7 +344,7 @@ func main() {
counter := runner{
connString: endpoint.ConnectionString,
fn: runCount,
errMessage: "Recieved error running count",
errMessage: "Received error running count",
opsPerSecond: endpoint.TargetCountsPerSecond,
}
go counter.run()
Expand Down