Bartek
05/13/2020, 1:11 PMUI
as it not showing any flows
and runs
. I register flow with success and see in agent logs and server logs that flow runs when is scheduled but I have no information about flows and runs in UI
.Andrei Duhnea
05/13/2020, 1:33 PMlocalhost:4200
. Worked around it by SSH-forwarding the 4200 port. I noticed an environment setting that might help in the compose file: https://github.com/PrefectHQ/prefect/blob/master/server/docker/docker-compose.yml#L90, will try to see if it does the trick.nicholas
05/13/2020, 1:46 PM~/.prefect/config.toml
like such:
[server]
[server.ui]
graphql_url = "your_graphql_endpoint:4200/graphql"
config.toml
present on the machine you're deploying Prefect Server, and you'll need to restart the Server for changes to apply.Andrei Duhnea
05/13/2020, 1:56 PM405
response codes.nicholas
05/13/2020, 1:59 PM/graphql
, since that's the route GraphQL serves requests fromAndrei Duhnea
05/13/2020, 2:06 PMnicholas
05/13/2020, 2:08 PMAndrei Duhnea
05/13/2020, 2:08 PM"POST /10.0.10.72:4200/graphql/ HTTP/1.1" 405 157 "<http://10.0.10.72:8080/>"
<http://10.0.10.72:8080/10.0.10.72:4200/graphql/>
[server.ui]
graphql_url = "10.0.10.72:4200/graphql"
<html>
<head><title>405 Not Allowed</title></head>
<body>
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.18.0</center>
</body>
</html>
nicholas
05/13/2020, 2:18 PMgraphql_url
Andrei Duhnea
05/13/2020, 2:19 PMnicholas
05/13/2020, 2:20 PMBartek
05/13/2020, 7:17 PMgraphql
and it works but in UI still no info about flows and runsnicholas
05/13/2020, 8:19 PMflow.register()
?Bartek
05/13/2020, 9:14 PMnicholas
05/13/2020, 9:17 PMgraphql_url
variable set in ~/.prefect/config.toml
is incorrect for some reason. Can you share what you've got there?Bartek
05/14/2020, 5:49 AMnicholas
05/14/2020, 1:23 PM