Add and fix ifshort

This commit is contained in:
Kristoffer Dalby 2021-11-14 18:09:22 +01:00
parent 9390348a65
commit 796072a5a4
No known key found for this signature in database
GPG Key ID: 09F62DC067465735
6 changed files with 5 additions and 11 deletions

View File

@ -29,7 +29,6 @@ linters:
- testpackage
- stylecheck
- wrapcheck
- ifshort
- gomnd
- goerr113
- errorlint

View File

@ -52,8 +52,7 @@ func LoadConfig(path string) error {
viper.SetDefault("cli.insecure", false)
viper.SetDefault("cli.timeout", "5s")
err := viper.ReadInConfig()
if err != nil {
if err := viper.ReadInConfig(); err != nil {
return fmt.Errorf("Fatal error reading config file: %s \n", err)
}

View File

@ -43,8 +43,7 @@ func main() {
NoColor: !colors,
})
err := cli.LoadConfig("")
if err != nil {
if err := cli.LoadConfig(""); err != nil {
log.Fatal().Err(err)
}

3
db.go
View File

@ -105,8 +105,7 @@ func (h *Headscale) setValue(key string, value string) error {
Value: value,
}
_, err := h.getValue(key)
if err == nil {
if _, err := h.getValue(key); err == nil {
h.db.Model(&kv).Where("key = ?", key).Update("value", value)
return nil

View File

@ -331,8 +331,7 @@ func (m *Machine) GetHostInfo() (*tailcfg.Hostinfo, error) {
}
func (h *Headscale) isOutdated(m *Machine) bool {
err := h.UpdateMachine(m)
if err != nil {
if err := h.UpdateMachine(m); err != nil {
// It does not seem meaningful to propagate this error as the end result
// will have to be that the machine has to be considered outdated.
return true

View File

@ -68,8 +68,7 @@ func (h *Headscale) RegisterOIDC(c *gin.Context) {
}
b := make([]byte, 16)
_, err := rand.Read(b)
if err != nil {
if _, err := rand.Read(b); err != nil {
log.Error().Msg("could not read 16 bytes from rand")
c.String(http.StatusInternalServerError, "could not read 16 bytes from rand")