Skip to content

Commit

Permalink
chore: Adds staticcheck lint check (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruyaume authored Jan 4, 2024
1 parent 0063fce commit 349dd6c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ linters:
- gofmt
- govet
# - errcheck
# - staticcheck
- staticcheck
- unused
# - gosimple
- ineffassign
Expand Down
3 changes: 1 addition & 2 deletions factory/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ package factory

import (
"fmt"
"io/ioutil"
"os"
"sync"

Expand All @@ -34,7 +33,7 @@ func init() {

// TODO: Support configuration update from REST api
func InitConfigFactory(f string) error {
if content, err := ioutil.ReadFile(f); err != nil {
if content, err := os.ReadFile(f); err != nil {
return err
} else {
NssfConfig = Config{}
Expand Down
6 changes: 6 additions & 0 deletions service/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,16 @@ func (nssf *NSSF) UpdateNF() {
problemDetails.Status == 404 || problemDetails.Status == 400 {
//register with NRF full profile
nfProfile, err = nssf.BuildAndSendRegisterNFInstance()
if err != nil {
initLog.Errorf("NSSF update to NRF Error[%s]", err.Error())
}
}
} else if err != nil {
initLog.Errorf("NSSF update to NRF Error[%s]", err.Error())
nfProfile, err = nssf.BuildAndSendRegisterNFInstance()
if err != nil {
initLog.Errorf("NSSF update to NRF Error[%s]", err.Error())
}
}

if nfProfile.HeartBeatTimer != 0 {
Expand Down

0 comments on commit 349dd6c

Please sign in to comment.