Riya Sinha
11/08/2025, 7:33 PM^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/prefect/flow_engine.py", line 1079, in create_flow_run
return await client.create_flow_run(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/prefect/client/orchestration/_flow_runs/client.py", line 568, in create_flow_run
response = await self.request("POST", "/flow_runs/", json=flow_run_create_json)
full trace in thread to avoid large message — just wanted to ask if this is an issue others are currently facing recentlyHW
11/10/2025, 7:33 AM[error] tests\conftest.py:76: in <module>
from .fixtures.api import *
tests\fixtures\api.py:12: in <module>
from prefect.settings import PREFECT_SERVER_DOCKET_NAME, temporary_settings
E ImportError: cannot import name 'PREFECT_SERVER_DOCKET_NAME' from 'prefect.settings' (...\Lib\site-packages\prefect\settings\__init__.py)
I don't know how settings like PREFECT_SERVER_DOCKET_NAME works, anybody help?Nathan Low
11/10/2025, 2:41 PMpull:
- prefect.deployments.steps.run_shell_script:
id: get-github-token
script: uv tool run prefect-cloud github token owner/repository
- prefect.deployments.steps.git_clone:
id: git-clone
repository: <https://x-access-token>:{{ get-github-token.stdout }}@github.com/owner/repository.git
Then I get this error when running the run_shell_script step when the flow start to run:
`run_shell_script` failed with error code 1: Downloading pygments (1.2MiB)
Downloading uv (20.4MiB)
Downloading pydantic-core (2.0MiB)
Downloading pydantic-core
Downloading uv
Downloading pygments
Installed 35 packages in 126ms
Bytecode compiled 1004 files in 1.11sMichel Lalancette
11/11/2025, 12:20 AMKevin Hu
11/11/2025, 7:16 PMTheom
11/12/2025, 9:41 AM.to_deployment + serve scheme). If I set the environment variable PREFECT_RESULTS_LOCAL_STORAGE_PATH, it's set to the same value for all workflows. I asked Marvin and I was told to set result_storage in the flow decorator, either to LocalFileSystem(basepath=path1) or Path(path1) but it fails. Somehow I need to call .save() on the LocalFileSystem instance beforehand to create a block server-side. I find this a bit convoluted for a fairly simple need, especially since I otherwise don't need to do it when using the PREFECT_RESULTS_LOCAL_STORAGE_PATH variable set to arbitrary values. Marvin also told me that I could pass PREFECT_RESULTS_LOCAL_STORAGE_PATH as a job variable to the deployment, but that it was not the recommended solution. What would you recommend? Also, if there are no other solutions than what I described, I would argue that being allowed to simply provide a Path object to result_storage would be a reasonable behaviour to expect and I would be interested in discussing it or filing an issue on GitHub. Thanks!Phillip Shearin
11/12/2025, 3:11 PMTri
11/13/2025, 4:54 PMhambone johnston
11/13/2025, 8:15 PMhambone johnston
11/13/2025, 8:16 PMalex joyce
11/14/2025, 6:34 AMNathan Low
11/14/2025, 2:57 PMJordan Jones
11/14/2025, 4:18 PMSergio Luceno
11/14/2025, 5:17 PMKevin Hu
11/14/2025, 5:51 PMChu
11/14/2025, 7:42 PMresult_storage from the parent flow, even if the subflow had its own result_storage set?Sơn Lê
11/15/2025, 10:01 AMLucas
11/17/2025, 3:09 AM@task annotation will hide those parameters from the typechecker. e.g., this code will not throw an error:
@task
def example_task(b: bool):
return False
@flow
def example_flow():
return example_task()
Is this expected behavior? Did I misconfigure something?Lucas
11/17/2025, 3:26 AMFabio Geraci
11/17/2025, 12:14 PMTobias Graml
11/17/2025, 1:36 PMNathan Low
11/17/2025, 8:49 PMJake Kaplan
11/18/2025, 1:08 AMAmrit Amar
11/18/2025, 5:55 AMexec /usr/bin/tini: exec format error I got the PREFECT in ASCII and then nothing which I imagine is because the Prefect Task/RunId is invalid? I'm not sure what to make of the entire thing and I am at a loss of what to do from here.František
11/18/2025, 9:29 AM- name: other
description: XXX
entrypoint: XXXX:build_other
schedules:
- cron: "0 6 * * *"
timezone: "Europe/Prague"
active: true
parameters: {}
work_pool: *transformations
pull: *work_dir
concurrency_limit:
limit: 1
collision_strategy: "CANCEL_NEW"Khoa Phan
11/18/2025, 3:15 PMprefect/runner/storage.py I have to setup the token as oauth2:<token>@gitlab.corp-name/group/project.git However this does not work and i keep getting error 128. Any idea how to resolve this one? Or maybe some workaround that does not depends on pulling perhaps ?Tomáš Řehák (realrehi)
11/18/2025, 3:53 PMlog etc. We found e.g. the PREFECT_EVENTS_RETENTION_PERIOD="2d" for events table. But is there any good "Overall Retention" setup guide?Liam Shalon
11/19/2025, 1:49 AMDaniel
11/19/2025, 1:08 PMTom Han
11/19/2025, 5:31 PMFailed to pull from remote:
Cloning into '/tmp/tmp0h4b39iiprefect'...
fatal: unable to access '<https://github.com/org/repo.git/>': Failed to connect to <http://github.com|github.com> port 443 after 131017 ms: Couldn't connect to server
errors on most of my deployments