Browse Source

added empty string to params

0xdcarns 2 years ago
parent
commit
16f2093004
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mq/publishers.go

+ 1 - 1
mq/publishers.go

@@ -36,7 +36,7 @@ func PublishPeerUpdate() error {
 // PublishSingleHostUpdate --- determines and publishes a peer update to one host
 // PublishSingleHostUpdate --- determines and publishes a peer update to one host
 func PublishSingleHostUpdate(host *models.Host) error {
 func PublishSingleHostUpdate(host *models.Host) error {
 
 
-	peerUpdate, err := logic.GetPeerUpdateForHost(host)
+	peerUpdate, err := logic.GetPeerUpdateForHost("", host)
 	if err != nil {
 	if err != nil {
 		return err
 		return err
 	}
 	}