We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd76ff commit f1015cdCopy full SHA for f1015cd
server.go
@@ -2411,6 +2411,10 @@ func (s *server) Stop() error {
2411
if err := s.invoices.Stop(); err != nil {
2412
srvrLog.Warnf("failed to stop invoices: %v", err)
2413
}
2414
+ if err := s.interceptableSwitch.Stop(); err != nil {
2415
+ srvrLog.Warnf("failed to stop interceptable "+
2416
+ "switch: %v", err)
2417
+ }
2418
if err := s.invoiceHtlcModifier.Stop(); err != nil {
2419
srvrLog.Warnf("failed to stop htlc invoices "+
2420
"modifier: %v", err)
0 commit comments