sleep before reconnecting after an error in listen, and fix default z-wave js server URL
All checks were successful
/ build-container (push) Successful in 6m1s

This commit is contained in:
Finn 2024-04-23 21:19:36 -07:00
parent 762d1baea4
commit 759799acdc
2 changed files with 2 additions and 1 deletions

View file

@ -15,7 +15,7 @@ type Config struct {
} }
var C = Config{ var C = Config{
ZWaveJSServer: "ws://home-assistant:3000", ZWaveJSServer: "ws://addon_core_zwave_js:3000",
SqliteDatabase: "/data/lockserver.db", SqliteDatabase: "/data/lockserver.db",
HTTPBind: ":8080", HTTPBind: ":8080",
} }

View file

@ -59,6 +59,7 @@ func (c *Client) DialAndListen(ctx context.Context) {
} }
logrus.WithError(err).Error("error communicating with zwavejs server") logrus.WithError(err).Error("error communicating with zwavejs server")
time.Sleep(time.Second * 5)
continue continue
} }
_ = c.conn.Close() _ = c.conn.Close()