Skip to content
This repository was archived by the owner on Jun 27, 2021. It is now read-only.

Commit 1cd72b6

Browse files
authored
Group member notfound fix (#25)
* Group member: fix handlenotfound error * update version
1 parent 05f7f05 commit 1cd72b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GOVERSION := 1.9.3
1919
PROJECT := $(CURRENT_DIR:$(GOPATH)/src/%=%)
2020
OWNER := $(notdir $(patsubst %/,%,$(dir $(PROJECT))))
2121
NAME := $(notdir $(PROJECT))
22-
VERSION := 0.1.6
22+
VERSION := 0.1.7
2323
EXTERNAL_TOOLS = \
2424
github.com/golang/dep/cmd/dep
2525

gsuite/resource_group_member.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func resourceGroupMemberRead(d *schema.ResourceData, meta interface{}) error {
134134
})
135135

136136
if err != nil {
137-
return handleNotFoundError(err, d, fmt.Sprintf("Group member %q", d.Get("name").(string)))
137+
return handleNotFoundError(err, d, fmt.Sprintf("Group member %q", d.Get("email").(string)))
138138
}
139139

140140
d.SetId(groupMember.Id)

0 commit comments

Comments
 (0)