https://prefect.io logo
Title
a

Alex F

03/09/2022, 7:56 PM
prefect register --project "Project Name" --path ./Prefect/ I am getting error after pointing my install from localhost to 10.1.x.x IP , here is my configuration [server] host = "http://10.1.xx" port = "4200" host_ip = "10.1.x.x" host_port = "4200" endpoint = "${server.host}:${server.port}" [server.ui] host = "http://10.1.x.x" port = "8080" host_port = "8080" host_ip = "10.1.x.x" apollo_url="http://10.1.x.x:4200/graphql" raise InvalidSchema("No connection adapters were found for {!r}".format(url)) requests.exceptions.InvalidSchema: No connection adapters were found for '10.1.x.x:4200'
k

Kevin Kho

03/09/2022, 8:14 PM
Hey @Alex F, I think your endpoiint for server needs the graphql:
[server]
endpoint = "YOUR_MACHINES_PUBLIC_IP:4200/graphql"
1
a

Alex F

03/09/2022, 8:21 PM
Worked like a charm 🙂 thank you Very much
👍 1