Merge pull request #1113 from nspcc-dev/fix-test-failures

Fix test failures
This commit is contained in:
Roman Khimov 2020-06-26 09:21:27 +03:00 committed by GitHub
commit ef5848b303
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -243,6 +243,7 @@ func TestSubscriptions(t *testing.T) {
executionCh := make(chan *state.AppExecResult, chBufSize) executionCh := make(chan *state.AppExecResult, chBufSize)
bc := newTestChain(t) bc := newTestChain(t)
defer bc.Close()
bc.SubscribeForBlocks(blockCh) bc.SubscribeForBlocks(blockCh)
bc.SubscribeForTransactions(txCh) bc.SubscribeForTransactions(txCh)
bc.SubscribeForNotifications(notificationCh) bc.SubscribeForNotifications(notificationCh)

View file

@ -168,17 +168,17 @@ func (s *Server) Start(errChan chan error) {
s.log.Info("starting rpc-server (https)", zap.String("endpoint", s.https.Addr)) s.log.Info("starting rpc-server (https)", zap.String("endpoint", s.https.Addr))
go func() { go func() {
err := s.https.ListenAndServeTLS(cfg.CertFile, cfg.KeyFile) 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)) s.log.Error("failed to start TLS RPC server", zap.Error(err))
}
errChan <- err errChan <- err
}
}() }()
} }
err := s.ListenAndServe() err := s.ListenAndServe()
if err != nil { if err != http.ErrServerClosed {
s.log.Error("failed to start RPC server", zap.Error(err)) s.log.Error("failed to start RPC server", zap.Error(err))
}
errChan <- err errChan <- err
}
} }
// Shutdown overrides the http.Server Shutdown // Shutdown overrides the http.Server Shutdown