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 b848b5d commit 3ad038fCopy full SHA for 3ad038f
internal/pkg/services/serverosupdate/client/client.go
@@ -12,7 +12,6 @@ import (
12
)
13
14
func ConfigureClient(p *print.Printer) (*serverupdate.APIClient, error) {
15
- var err error
16
var apiClient *serverupdate.APIClient
17
var cfgOptions []sdkConfig.ConfigurationOption
18
@@ -27,7 +26,7 @@ func ConfigureClient(p *print.Printer) (*serverupdate.APIClient, error) {
27
26
if customEndpoint != "" {
28
cfgOptions = append(cfgOptions, sdkConfig.WithEndpoint(customEndpoint))
29
} else {
30
- cfgOptions = append(cfgOptions, authCfgOption, sdkConfig.WithRegion("eu01"))
+ cfgOptions = append(cfgOptions, authCfgOption)
31
}
32
33
if p.IsVerbosityDebug() {
0 commit comments