Skip to content

Commit 0cb2635

Browse files
committed
Fix gofmt -s formatting in config.go
1 parent f14cc3d commit 0cb2635

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

internal/config/config.go

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -82,25 +82,25 @@ func (c *Config) DeepCopy() *Config {
8282

8383
// UserConfig is the set of configurations exposed to users
8484
type UserConfig struct {
85-
Protocol string
86-
Host string // from databricks UI
87-
Port int // from databricks UI
88-
HTTPPath string // from databricks UI
89-
Catalog string
90-
Schema string
91-
Authenticator auth.Authenticator
92-
AccessToken string // from databricks UI
93-
MaxRows int // max rows per page
94-
QueryTimeout time.Duration // Timeout passed to server for query processing
95-
UserAgentEntry string
96-
Location *time.Location
97-
SessionParams map[string]string
98-
RetryWaitMin time.Duration
99-
RetryWaitMax time.Duration
100-
RetryMax int
85+
Protocol string
86+
Host string // from databricks UI
87+
Port int // from databricks UI
88+
HTTPPath string // from databricks UI
89+
Catalog string
90+
Schema string
91+
Authenticator auth.Authenticator
92+
AccessToken string // from databricks UI
93+
MaxRows int // max rows per page
94+
QueryTimeout time.Duration // Timeout passed to server for query processing
95+
UserAgentEntry string
96+
Location *time.Location
97+
SessionParams map[string]string
98+
RetryWaitMin time.Duration
99+
RetryWaitMax time.Duration
100+
RetryMax int
101101
// Telemetry configuration
102-
EnableTelemetry bool // Opt-in for telemetry (respects server feature flags)
103-
ForceEnableTelemetry bool // Force enable telemetry (bypasses server checks)
102+
EnableTelemetry bool // Opt-in for telemetry (respects server feature flags)
103+
ForceEnableTelemetry bool // Force enable telemetry (bypasses server checks)
104104
Transport http.RoundTripper
105105
UseLz4Compression bool
106106
EnableMetricViewMetadata bool

0 commit comments

Comments
 (0)