commit e7885cf53e8c8c30814ce861d2e677157ff9e928
parent 0eb83c922b4ae5ab280c0d5efb9216f99ba9456c
Author: Vetle Haflan <vetle@haflan.dev>
Date: Fri, 10 Apr 2020 16:55:28 +0200
Fix int format
Diffstat:
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/main.go b/main.go
@@ -20,8 +20,9 @@ func main() {
defer database.Close()
fmt.Printf("Server running on port %v\n", *port)
services.Add("testing", services.Service{
- Name: "Test name",
- Description: "This is the description, yay",
+ Name: "Test name",
+ Description: "This is the description, yay",
+ ExpectationPeriod: 282342,
})
fmt.Printf("ADD ERR: %v\n", services.Add("testing", services.Service{Name: "This"}))
fmt.Printf("none service: %+v\n", services.Get("none"))
diff --git a/services/services.go b/services/services.go
@@ -19,7 +19,7 @@ var (
type Service struct {
Name string `json:"name"` // service name, usually on the format 'service @ server'
Description string `json:"description"` // more detailed description of the service
- ExpectationPeriod int `json:"period"` // set if the service is expected to report periodically, format is UnixTime (milli?)
+ ExpectationPeriod uint64 `json:"period"` // set if the service is expected to report periodically, format is UnixTime (milli?)
}
// Get returns a service struct if the identifier matches any
@@ -39,8 +39,9 @@ func Get(identifier string) *Service {
}
if period := sb.Get(keyServicePeriod); period != nil {
// Quick fix: Convert to string, then int
- // If an error occurs (it tho)
- if intPeriod, err := strconv.Atoi(string(period)); err != nil {
+ // Uses default value 0 if an error occurs
+ intPeriod, err := strconv.ParseUint(string(period), 10, 64)
+ if err != nil {
service.ExpectationPeriod = intPeriod
log.Printf("Couldn't convert period to int for service with id '%v'\n", identifier)
} else {
@@ -85,7 +86,7 @@ func Add(identifier string, service Service) error {
if err = sb.Put(keyServiceDescription, []byte(service.Description)); err != nil {
return err
}
- periodStr := strconv.Itoa(service.ExpectationPeriod)
+ periodStr := strconv.FormatUint(service.ExpectationPeriod, 10)
if err = sb.Put(keyServicePeriod, []byte(periodStr)); err != nil {
return err
}