Skip to content

Fix gofmt formatting in teamserver TLS config - #141

Merged
peterjaap merged 2 commits into
mainfrom
copilot/fix-lint-job-failure
Sep 1, 2026
Merged

Fix gofmt formatting in teamserver TLS config#141
peterjaap merged 2 commits into
mainfrom
copilot/fix-lint-job-failure

Conversation

Copilot AI commented Sep 1, 2026

Copy link
Copy Markdown
Contributor

The Lint CI job was failing because internal/teamserver/server.go had an extra alignment space in a struct literal that gofmt does not permit.

Change

  • internal/teamserver/server.go: Remove extra space in tls.Config struct field assignment
// Before
tlsConfig := &tls.Config{
    MinVersion:   tls.VersionTLS12,  // extra space for visual alignment

// After
tlsConfig := &tls.Config{
    MinVersion: tls.VersionTLS12,    // gofmt-compliant

Co-authored-by: peterjaap <431360+peterjaap@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix failing GitHub Actions job 'Lint' Fix gofmt formatting in teamserver TLS config Sep 1, 2026
Copilot AI requested a review from peterjaap September 1, 2026 08:34
@peterjaap
peterjaap marked this pull request as ready for review September 1, 2026 08:36
@github-actions

github-actions Bot commented Sep 1, 2026

Copy link
Copy Markdown
Contributor

📦 PR build artifacts

Built from 143abe0view run. Artifacts expire in 14 days.

Note: artifact download links require being signed in to GitHub with access to this repository.

@peterjaap
peterjaap merged commit e35579b into main Sep 1, 2026
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants