Skip to content

Commit

Permalink
github_team data source: fix wrong set (#14859)
Browse files Browse the repository at this point in the history
Do not set members_count and repos_count, which are not declared.
  • Loading branch information
raphink authored and stack72 committed May 29, 2017
1 parent 0938614 commit 396dbac
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions builtin/providers/github/data_source_github_team.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ func dataSourceGithubTeamRead(d *schema.ResourceData, meta interface{}) error {
d.Set("description", *team.Description)
d.Set("privacy", *team.Privacy)
d.Set("permission", *team.Permission)
d.Set("members_count", *team.MembersCount)
d.Set("repos_count", *team.ReposCount)

return nil
}
Expand Down

0 comments on commit 396dbac

Please sign in to comment.