Skip to content

Commit

Permalink
Merge pull request #8820 from planetscale/jg_configtypo
Browse files Browse the repository at this point in the history
Fix typo in pool config syntax.  Fixes #8819
  • Loading branch information
systay authored Sep 22, 2021
2 parents 4dd1616 + 65a1b7e commit 68fa0c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go/vt/vttablet/tabletserver/tabletenv/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ type ConnPoolConfig struct {
type OltpConfig struct {
QueryTimeoutSeconds Seconds `json:"queryTimeoutSeconds,omitempty"`
TxTimeoutSeconds Seconds `json:"txTimeoutSeconds,omitempty"`
MaxRows int `json:"maxRpws,omitempty"`
MaxRows int `json:"maxRows,omitempty"`
WarnRows int `json:"warnRows,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion go/vt/vttablet/tabletserver/tabletenv/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ olapReadPool:
idleTimeoutSeconds: 1800
size: 200
oltp:
maxRpws: 10000
maxRows: 10000
queryTimeoutSeconds: 30
txTimeoutSeconds: 30
oltpReadPool:
Expand Down

0 comments on commit 68fa0c8

Please sign in to comment.