Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gab-arrobo authored May 27, 2024
1 parent eb240a5 commit a51dc87
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion simapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,10 @@ func InitConfigFactory(f string, configMsgChan chan configMessage, subProvisionE
}

func syncConfig(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "OK\n")
_, err := fmt.Fprintf(w, "OK\n")
if err != nil {
log.Println(err)
}
dispatchAllGroups(configMsgChan)
dispatchAllNetworkSlices(configMsgChan)
}
Expand Down

0 comments on commit a51dc87

Please sign in to comment.