Fix zeroconf discovery bug
This commit is contained in:
parent
0c8411d53e
commit
e78338f168
|
@ -1,5 +1,5 @@
|
||||||
DATABASE=sqlite:///endpoints.db
|
DATABASE=sqlite:///endpoints.db
|
||||||
API_HOST=windows.local
|
API_HOST=RoomF7203.local
|
||||||
SERVICE_NAME=RoomF7203
|
SERVICE_NAME=RoomF7203
|
||||||
SERVICE_TYPE=_http._tcp.local.
|
SERVICE_TYPE=_http._tcp.local.
|
||||||
SERVICE_IP=192.168.137.1
|
SERVICE_IP=192.168.137.1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from zeroconf import ServiceInfo, Zeroconf
|
from zeroconf import ServiceInfo, Zeroconf
|
||||||
|
|
||||||
from config import API_HOST, SERVICE_IP, SERVICE_NAME, SERVICE_PORT, SERVICE_TYPE
|
from config import SERVICE_IP, SERVICE_NAME, SERVICE_PORT, SERVICE_TYPE
|
||||||
|
|
||||||
zeroconf = Zeroconf()
|
zeroconf = Zeroconf()
|
||||||
|
|
||||||
|
@ -9,10 +9,8 @@ info = ServiceInfo(
|
||||||
name=f"{SERVICE_NAME}.{SERVICE_TYPE}",
|
name=f"{SERVICE_NAME}.{SERVICE_TYPE}",
|
||||||
addresses=[SERVICE_IP],
|
addresses=[SERVICE_IP],
|
||||||
port=int(SERVICE_PORT),
|
port=int(SERVICE_PORT),
|
||||||
server=API_HOST,
|
server=f"{SERVICE_NAME}.local.",
|
||||||
properties={
|
properties={"path": "/api/endpoints"},
|
||||||
"path": "/api/endpoints",
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue