Skip to content

Commit 1c01312

Browse files
committed
2 parents b3757bf + 326cea9 commit 1c01312

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

restapi/api_client.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ type apiClientOpt struct {
2323
username string
2424
password string
2525
headers map[string]string
26-
use_cookie bool
2726
timeout int
2827
id_attribute string
2928
create_method string
@@ -46,7 +45,6 @@ type api_client struct {
4645
username string
4746
password string
4847
headers map[string]string
49-
use_cookie bool
5048
timeout int
5149
id_attribute string
5250
create_method string

restapi/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func configureProvider(d *schema.ResourceData) (interface{}, error) {
156156
username: d.Get("username").(string),
157157
password: d.Get("password").(string),
158158
headers: headers,
159-
use_cookie: d.Get("use_cookies").(bool),
159+
use_cookies: d.Get("use_cookies").(bool),
160160
timeout: d.Get("timeout").(int),
161161
id_attribute: d.Get("id_attribute").(string),
162162
copy_keys: copy_keys,

0 commit comments

Comments
 (0)