Skip to content

Commit

Permalink
Database: fix mysql long run flag int on update (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
optik-aper committed Jul 5, 2024
1 parent 21a575f commit 94f9520
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/database/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,9 @@ func NewCmdDatabase(base *cli.Base) *cobra.Command { //nolint:funlen,gocyclo
"enable requiring primary keys for the mysql managed database",
)
update.Flags().Bool("mysql-slow-query-log", false, "enable slow query logging for the mysql managed database")
update.Flags().String(
update.Flags().Int(
"mysql-long-query-time",
"",
0,
"long query time for the mysql managed database when slow query logging is enabled",
)
update.Flags().String("redis-eviction-policy", "", "eviction policy for the redis managed database")
Expand Down

0 comments on commit 94f9520

Please sign in to comment.