Skip to content

Commit

Permalink
Update executor/simple.go
Browse files Browse the repository at this point in the history
Co-authored-by: CbcWestwolf <1004626265@qq.com>
  • Loading branch information
BornChanger and CbcWestwolf committed Dec 7, 2022
1 parent 5565066 commit 7cef273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ func (e *SimpleExec) executeCreateUser(ctx context.Context, s *ast.CreateUserStm
}
}
userAttributes = append(userAttributes, fmt.Sprintf("\"resource_group\": \"%s\"", resourceGroupName))
var userAttributesStr = fmt.Sprintf("{%s}", strings.Join(userAttributes, ","))
userAttributesStr := fmt.Sprintf("{%s}", strings.Join(userAttributes, ","))

tokenIssuer := ""
for _, authTokenOption := range s.AuthTokenOrTLSOptions {
Expand Down

0 comments on commit 7cef273

Please sign in to comment.