Upgraded Go and some of the vendor modules.

This commit is contained in:
James Wells 2022-06-09 12:57:12 -07:00
parent d5ac24bb26
commit 42623f63c6
Signed by: jwells
GPG key ID: 73196D10B8E65666
5 changed files with 178 additions and 9 deletions

View file

@ -7,10 +7,10 @@ import (
os "os"
sync "sync"
fqdn "github.com/Showmax/go-fqdn"
autorestart "github.com/slayer/autorestart"
fqdn "github.com/Showmax/go-fqdn"
gstructs "git.dragonheim.net/dragonheim/gagent/internal/gstructs"
gc "git.dragonheim.net/dragonheim/gagent/internal/client"
@ -30,7 +30,7 @@ import (
)
var (
semVER = "0.0.4"
semVER = "0.0.5"
)
var (
@ -77,6 +77,8 @@ func main() {
os.Exit(7)
}
// cs.Client.ConsulRegister("gagent-router", config.RouterPort)
wg.Add(1)
go gr.Main(&wg, config)
@ -88,6 +90,8 @@ func main() {
os.Exit(6)
}
// cs.Client.ConsulRegister("gagent-worker", config.WorkerPort)
wg.Add(1)
go gw.Main(&wg, config)