Skip to content

Commit 2292b0f

Browse files
committed
Fix config update handler
1 parent 5c69607 commit 2292b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ func (s *Server) appNotifyHandler(updatePayload types.AppUpdatePayload) {
320320
func (s *Server) configNotifyHandler(updatePayload types.ConfigUpdatePayload) {
321321
if updatePayload.ServerId == types.CurrentServerId {
322322
s.Trace().Str("server_id", string(updatePayload.ServerId)).Msg("Ignoring config update notification from self")
323-
//return
323+
return
324324
}
325325
s.Debug().Str("server_id", string(updatePayload.ServerId)).Msgf(
326326
"Received config update notification from %s", updatePayload.ServerId)

0 commit comments

Comments
 (0)