Skip to content

Commit

Permalink
Ignore KNX GroupValueRead requests
Browse files Browse the repository at this point in the history
  • Loading branch information
farmio committed Mar 17, 2024
1 parent 19ac5e8 commit d1ef04a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/inputs/knx_listener/knx_listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ func (kl *KNXListener) listen() {
for msg := range kl.client.Inbound() {
// Match GA to DataPointType and measurement name
ga := msg.Destination.String()
if (msg.Command == knx.GroupRead) {
kl.Log.Debugf("Ignoring GroupRead for GA %q from %q", ga, msg.Source.String())
continue
}
target, ok := kl.gaTargetMap[ga]
if !ok {
if !kl.gaLogbook[ga] {
Expand Down

0 comments on commit d1ef04a

Please sign in to comment.