Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Make reporting of parse result non-blocking in WatchDeviceChanges #185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion api/beacon/beacon.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ func (b *Beacon) WatchDeviceChanges(ctx context.Context) (chan bool, error) {
}

if changed.Name == "ManufacturerData" || changed.Name == "ServiceData" {
ch <- b.Parse()
select {
case ch <- b.Parse():
default:
}
}

break
Expand Down