Yash
01/27/2022, 11:04 AMAnna Geller
01/27/2022, 11:08 AM[server]
[server.ui]
apollo_url="<http://localhost:4200/graphql>"
Yash
01/27/2022, 11:12 AMAnna Geller
01/27/2022, 11:15 AM[server]
[server.ui]
apollo_url="<http://localhost:4200/graphql>"
Yash
01/27/2022, 11:17 AM_class_Â prefect.client.client.Client
?Anna Geller
01/27/2022, 11:19 AMYash
02/01/2022, 7:58 AMclient = prefect.Client(api_server=os.getenv('GRAPHQL_SERVICE_HOST'))
.
where below are the env when im docker composing my prefect registration code.
environment:
GRAPHQL_SERVICE_HOST: <http://apollo:4200/graphql>
I was able to fetch all the pre-registered flow and runs, but I was not able to register a flow.
Here is how I'm registring
.......
with Flow(name=group_name) as flow:
result = create_config(group_name)
start_orchestration(result[0], result[1], result[2])
_id = flow.register(project_name='Test')
......