-
### Bug summary
When PREFECT_API_DATABASE_CONNECTION_URL is defined in prefect.yaml it is not being used. Only when you set it on os level (ie export PREFECT_API_DATABASE_CONNECTION_URL="xxx") in the…
-
After I got the second revision working I realized that I had an ad-hoc orchestration of workflows: parse XML, download MP3s, call transcription, generate sites, deploy sites. Why not reuse a real eng…
-
### Bug summary
I created a environment, `pip install -U prefect` and tried running `prefect server start` and get the below error.
Thanks for any help!
trace and pip freeze
$ python -…
-
The prefect worker on Guerin sometimes crashes for kind of opaque reasons- I'd love to get more insight into why this happens and figure out how to prevent the error, automatically restart it, or othe…
-
### Bug summary
When I visualize a flow run in a local server, the flow runs successfully but the visual info on server does not work very well. I do not see any task runs, and the flow runs do not a…
-
### Bug summary
Trying to create a deployment with a Docker Image on MacOS with Docker Desktop fails with the following error, but only if you are located in Europe:
```
File "/Users/zidar/prog…
-
When installing lightFM as a Github action I am getting the following error.
```
pip install -r requirements.txt
[4](https://github.com/Endeavor-Digital/prefect-2-flows/actions/runs/4735271259/jo…
-
### Bug summary
When I specify result_storage for a flow, that executes tasks in parallel I get an error
```python
from prefect import flow, task, get_run_logger
from prefect.futures import wa…
-
### Bug summary
version 1 with semaphore
```
import asyncio
from prefect import task, flow
sem = asyncio.Semaphore(100)
@task
async def print_value(value):
async with sem:
a…
-
### Bug summary
If I'm reading the code correctly, `create_flow_run_from_deployment()` does not set the flow's `empirical_policy` on creation [link](https://github.com/PrefectHQ/prefect/blob/86b80dc2…