Skip to content

Commit

Permalink
Disabling SSL for now
Browse files Browse the repository at this point in the history
  • Loading branch information
COMTOP1 committed Oct 15, 2024
1 parent eb39375 commit fdcb94f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion router.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ func NewRouter(conf *RouterConf) *Router {
}

func (r *Router) Start() error {
r.router.Logger.Error(r.router.StartTLS(r.address, r.cert, r.key))
// r.router.Logger.Error(r.router.StartTLS(r.address, r.cert, r.key))
r.router.Logger.Error(r.router.Start(r.address))
return fmt.Errorf("failed to start router on address %s", r.address)
}

Expand Down

0 comments on commit fdcb94f

Please sign in to comment.