Skip to content

Commit b1e55f5

Browse files
committed
lnd: don't abort the startup on subsystem errors
We want to make sure the node can start if non-fatal error is returned.
1 parent 799ce97 commit b1e55f5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

server.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -2563,12 +2563,10 @@ func (s *server) Start() error {
25632563
startErr = err
25642564
return
25652565
}
2566+
25662567
if err := s.establishPersistentConnections(); err != nil {
25672568
srvrLog.Errorf("Failed to establish persistent "+
25682569
"connections: %v", err)
2569-
2570-
startErr = err
2571-
return
25722570
}
25732571

25742572
// setSeedList is a helper function that turns multiple DNS seed

0 commit comments

Comments
 (0)