forked from TrueCloudLab/neoneo-go
Merge pull request #1114 from nspcc-dev/fix-test-failures-2.x
Fix test failures 2.x
This commit is contained in:
commit
7e5533e77e
2 changed files with 5 additions and 4 deletions
|
@ -246,6 +246,7 @@ func TestSubscriptions(t *testing.T) {
|
|||
executionCh := make(chan *state.AppExecResult, chBufSize)
|
||||
|
||||
bc := newTestChain(t)
|
||||
defer bc.Close()
|
||||
bc.SubscribeForBlocks(blockCh)
|
||||
bc.SubscribeForTransactions(txCh)
|
||||
bc.SubscribeForNotifications(notificationCh)
|
||||
|
|
|
@ -176,17 +176,17 @@ func (s *Server) Start(errChan chan error) {
|
|||
s.log.Info("starting rpc-server (https)", zap.String("endpoint", s.https.Addr))
|
||||
go func() {
|
||||
err := s.https.ListenAndServeTLS(cfg.CertFile, cfg.KeyFile)
|
||||
if err != nil {
|
||||
if err != http.ErrServerClosed {
|
||||
s.log.Error("failed to start TLS RPC server", zap.Error(err))
|
||||
}
|
||||
errChan <- err
|
||||
}
|
||||
}()
|
||||
}
|
||||
err := s.ListenAndServe()
|
||||
if err != nil {
|
||||
if err != http.ErrServerClosed {
|
||||
s.log.Error("failed to start RPC server", zap.Error(err))
|
||||
}
|
||||
errChan <- err
|
||||
}
|
||||
}
|
||||
|
||||
// Shutdown overrides the http.Server Shutdown
|
||||
|
|
Loading…
Reference in a new issue