Skip to content

Commit

Permalink
revert unnecessary retrieval of connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Keber committed Jun 6, 2019
1 parent 1d04198 commit b3e9de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth0/resource_auth0_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func buildUser(d *schema.ResourceData) *management.User {
}
}

if u.Username != nil || u.Password != nil || u.EmailVerified != nil || u.PhoneVerified != nil || u.Nickname != nil {
if u.Username != nil || u.Password != nil || u.EmailVerified != nil || u.PhoneVerified != nil {
// When updating email_verified, phone_verified, username or password
// we need to specify the connection property too.
//
Expand Down

0 comments on commit b3e9de3

Please sign in to comment.