Skip to content

Commit

Permalink
Fix flag usage
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Dec 18, 2023
1 parent 4bacd89 commit 5088056
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/operator/vttablet/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ limitations under the License.
package vttablet

import (
"fmt"

"vitess.io/vitess/go/vt/topo/topoproto"

corev1 "k8s.io/api/core/v1"
Expand Down Expand Up @@ -70,7 +72,7 @@ func init() {
"health_check_interval": healthCheckInterval,

"queryserver-config-max-result-size": queryserverConfigMaxResultSize,
"queryserver-config-query-timeout": queryserverConfigQueryTimeout,
"queryserver-config-query-timeout": fmt.Sprintf("%ds", queryserverConfigQueryTimeout),
"queryserver-config-pool-size": queryserverConfigPoolSize,
"queryserver-config-stream-pool-size": queryserverConfigStreamPoolSize,
"queryserver-config-transaction-cap": queryserverConfigTransactionCap,
Expand Down

0 comments on commit 5088056

Please sign in to comment.