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.
2 parents f1bf965 + 6f6bb6f commit 6bb5236Copy full SHA for 6bb5236
pkg/oci/client/client.go
@@ -139,7 +139,7 @@ func New(cfg *Config) (Interface, error) {
139
baremetal.Region(cfg.Auth.Region),
140
// Kubernetes will handle retries.
141
// The current go client will retry requests that are not retryable.
142
- baremetal.DisableAutoRetries(true),}
+ baremetal.DisableAutoRetries(true)}
143
144
if cfg.Auth.PrivateKeyPassphrase != "" {
145
opts = append(opts, baremetal.PrivateKeyPassword(cfg.Auth.PrivateKeyPassphrase))
@@ -149,7 +149,7 @@ func New(cfg *Config) (Interface, error) {
149
cfg.Auth.UserOCID,
150
cfg.Auth.TenancyOCID,
151
cfg.Auth.Fingerprint,
152
- opts...
+ opts...,
153
)
154
if err != nil {
155
return nil, err
0 commit comments