Skip to content

Commit

Permalink
Add missing comma in grant select query (observe method)
Browse files Browse the repository at this point in the history
  • Loading branch information
alereca committed Feb 27, 2023
1 parent 9d4bffd commit 3cb4971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/mysql/user/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func (c *external) Observe(ctx context.Context, mg resource.Managed) (managed.Ex
"max_questions, " +
"max_updates, " +
"max_connections, " +
"max_user_connections " +
"max_user_connections, " +
"plugin" +
"FROM mysql.user WHERE User = ? AND Host = ?"
err := c.db.Scan(ctx,
Expand Down

0 comments on commit 3cb4971

Please sign in to comment.