File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments