Skip to content

Commit

Permalink
Merge pull request #557 from simpleiot/feature-schedule
Browse files Browse the repository at this point in the history
improve mdns
  • Loading branch information
cbrake committed Jun 6, 2023
2 parents c309377 + eec64c2 commit 435b274
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ For more details or to discuss releases, please visit the

## [Unreleased]

- fix race condition in Client Manager client startup (#552)

## [[0.11.1] - 2023-05-30](https://github.com/simpleiot/simpleiot/releases/tag/v0.11.1)

- update point merge code to handle complex types
Expand Down
3 changes: 1 addition & 2 deletions client/shelly.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ func (sc *ShellyClient) Run() error {

go scan()

// FIXME: scanTicker := time.NewTicker(time.Minute * 1)
scanTicker := time.NewTicker(time.Second * 5)
scanTicker := time.NewTicker(time.Minute * 1)

done:
for {
Expand Down

0 comments on commit 435b274

Please sign in to comment.