fixed client-id typo

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2024-05-16 13:06:22 +02:00
parent b09d568fa7
commit 95642a1c4d
No known key found for this signature in database

View File

@ -51,7 +51,7 @@ func (mms *MqttMonitor) IsTerminated() (isTerminated bool) {
func getClientID() string { func getClientID() string {
conf := config.GetConfig() conf := config.GetConfig()
return "-monitor" + conf.ValidatorAddress return "monitor-" + conf.ValidatorAddress
} }
func (mms *MqttMonitor) lazyLoadMonitorMQTTClient() util.MQTTClientI { func (mms *MqttMonitor) lazyLoadMonitorMQTTClient() util.MQTTClientI {