Skip to content

Commit 9b5b8f9

Browse files
committed
SUMO-172016 fixup
1 parent 3154f21 commit 9b5b8f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sumologic/provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
154154
msg = "sumologic provider: auth_jwt is not set;"
155155
}
156156
if accessId == "" {
157-
msg = fmt.sprintf("%s access_id should be set;", msg)
157+
msg = fmt.Sprintf("%s access_id should be set;", msg)
158158
}
159159
if accessKey == "" {
160160
msg = fmt.Sprintf("%s access_key should be set; ", msg)
@@ -164,7 +164,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
164164
msg = "sumologic provider: auth_jwt is set;"
165165
}
166166
if accessId != "" {
167-
msg = fmt.sprintf("%s access_id should not be set;", msg)
167+
msg = fmt.Sprintf("%s access_id should not be set;", msg)
168168
}
169169
if accessKey != "" {
170170
msg = fmt.Sprintf("%s access_key should not be set; ", msg)

0 commit comments

Comments
 (0)