We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task run bars at times display with gradients, at times with opacity, and at times with translucence.
This script will produce gradients
from time import sleep import random from prefect import flow, task @task def tree(time=0.5, dependencies=None): sleep(time) return random.random() @flow def my_flow(): layers = 6 trunk = tree.submit(time=1) for l in range(layers): t = trunk size = 10 * (layers - l) layer_tasks = [] for _ in range(size): time = 8 t = tree.submit(time=time - l, dependencies=trunk) layer_tasks.append(t) trunk = tree.submit(dependencies=layer_tasks) my_flow()
see summary
No response
The text was updated successfully, but these errors were encountered:
Happens in all browsers in all my flows as well.
Sorry, something went wrong.
I believe this should be fixed now by this PR PrefectHQ/graphs#460
I'm going to close this issue but please comment or reopen if you're still experiencing this.
No branches or pull requests
First check
Bug summary
Task run bars at times display with gradients, at times with opacity, and at times with translucence.
Reproduction
This script will produce gradients
Error
see summary
Browsers
Prefect version
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: