Browse Source

Appease the linter

master
Matthew Holt 3 years ago
parent
commit
be82cc7aca
No known key found for this signature in database GPG Key ID: 2A349DD577D586A5
  1. 2
      caddy.go

2
caddy.go

@ -550,7 +550,7 @@ func finishSettingUp(ctx Context, cfg *Config) error {
return fmt.Errorf("loading dynamic config from %T: %v", val, err) return fmt.Errorf("loading dynamic config from %T: %v", val, err)
} }
// do this in a goroutine so current config can finish being loaded; otherwise deadlock // do this in a goroutine so current config can finish being loaded; otherwise deadlock
go runLoadedConfig(loadedConfig) go func() { _ = runLoadedConfig(loadedConfig) }()
} }
} }

Loading…
Cancel
Save