We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bfcf69 commit db7e752Copy full SHA for db7e752
pkg/config/apiclient.go
@@ -188,11 +188,11 @@ func (s *Session) GetAPIClient() (*sncloud.APIClient, error) {
188
s.apiClientOnce.Do(func() {
189
err = s.initializeAPIClient()
190
})
191
-
+
192
if err != nil {
193
return nil, errors.Wrap(err, "failed to initialize API client")
194
}
195
196
return s.APIClient, nil
197
198
@@ -239,11 +239,11 @@ func (s *Session) GetLogClient() (*http.Client, error) {
239
s.logClientOnce.Do(func() {
240
err = s.initializeLogClient()
241
242
243
244
return nil, errors.Wrap(err, "failed to initialize log client")
245
246
247
return s.LogClient, nil
248
249
0 commit comments