mirror of
https://github.com/LBRYFoundation/tracker.git
synced 2025-08-23 17:47:29 +00:00
accidentally removed this err check
This commit is contained in:
parent
e24c5cacc3
commit
7c304b8c00
1 changed files with 4 additions and 1 deletions
5
main.go
5
main.go
|
@ -47,7 +47,10 @@ func main() {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to parse configuration file: %s\n", err)
|
log.Fatalf("Failed to parse configuration file: %s\n", err)
|
||||||
}
|
}
|
||||||
s := server.New(conf)
|
s, err := server.New(conf)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Failed to create server: %s\n", err)
|
||||||
|
}
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
c := make(chan os.Signal, 1)
|
c := make(chan os.Signal, 1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue