Skip to content

Commit 6bb5236

Browse files
authored
Merge pull request #130 from oracle/gb-key-password
Fix gofmt - Remove and add trailing commas
2 parents f1bf965 + 6f6bb6f commit 6bb5236

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/oci/client/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func New(cfg *Config) (Interface, error) {
139139
baremetal.Region(cfg.Auth.Region),
140140
// Kubernetes will handle retries.
141141
// The current go client will retry requests that are not retryable.
142-
baremetal.DisableAutoRetries(true),}
142+
baremetal.DisableAutoRetries(true)}
143143

144144
if cfg.Auth.PrivateKeyPassphrase != "" {
145145
opts = append(opts, baremetal.PrivateKeyPassword(cfg.Auth.PrivateKeyPassphrase))
@@ -149,7 +149,7 @@ func New(cfg *Config) (Interface, error) {
149149
cfg.Auth.UserOCID,
150150
cfg.Auth.TenancyOCID,
151151
cfg.Auth.Fingerprint,
152-
opts...
152+
opts...,
153153
)
154154
if err != nil {
155155
return nil, err

0 commit comments

Comments
 (0)