mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-22 14:21:55 -06:00
Yggdrasil demo: Add Stop functions
This commit is contained in:
parent
6c4eabbe92
commit
00e0df7c87
|
@ -180,3 +180,10 @@ func (m *DendriteMonolith) Start(staticPeer string, enableMulticast bool) {
|
|||
logger.Fatal(httpServer.Serve(m.listener))
|
||||
}()
|
||||
}
|
||||
|
||||
func (m *DendriteMonolith) Stop() {
|
||||
if err := m.listener.Close(); err != nil {
|
||||
logrus.Warn("Error stopping listener:", err)
|
||||
}
|
||||
m.YggdrasilNode.Stop()
|
||||
}
|
||||
|
|
|
@ -156,6 +156,13 @@ func Setup(instanceName, instancePeer, storageDirectory string, enableMulticast
|
|||
return n, nil
|
||||
}
|
||||
|
||||
func (n *Node) Stop() {
|
||||
if err := n.multicast.Stop(); err != nil {
|
||||
n.log.Println("Error stopping multicast:", err)
|
||||
}
|
||||
n.core.Stop()
|
||||
}
|
||||
|
||||
func (n *Node) DerivedServerName() string {
|
||||
return hex.EncodeToString(n.SigningPublicKey())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue