Laura Lorenz
11/20/2020, 9:36 PMJosh
01/15/2021, 10:09 PMJack Sundberg
02/22/2021, 2:05 AMdavzucky
03/04/2021, 10:54 AMale
03/27/2021, 4:45 PMale
03/29/2021, 2:54 PMpyodbc
Can someone help me fix it?
Thanks!Jonathan Wright
03/30/2021, 4:00 PMworkspace
variable is not showing in the UI. I have also shown that when the flow runs, in an environment with the same version of the storage class, the workspace
variable is None. I assumed my storage class would be pickled and stored with the flow and I wouldn’t need to make any code changes outside of this file. What am I missing?
https://github.com/PrefectHQ/prefect/blob/master/src/prefect/storage/bitbucket.pyale
04/01/2021, 7:45 PMJacopo Tagliabue
04/05/2021, 10:41 AM<https://prefect-community.slack.com/archives/CL09KTZPX/p1617381793056800>
). If there is any interest in having MF tasks as part of Prefect task library, I'd be happy to give it some actual love and fix a bunch of things here and there 😉 Let me know what you think!Sean Talia
04/06/2021, 2:27 PMShellTask
got released, but it looks like my docstring edits broke the way the documentation renders, as you can see here – is the issue that I needed to put the Raises
block above the Example
block in the docstring? thanks for your help! apologies if this is causing anyone any difficultyZanie
StartFlowRun
Task at https://github.com/PrefectHQ/prefect/pull/4245 and have some minor concerns about it being a breaking change. I expect that nobody was using the return value because it was undocumented but I'm curious if anyone here was? Let me know what you think!Michal Zawadzki
04/13/2021, 9:46 AMSean Talia
04/26/2021, 1:29 PMEnda Peng
04/28/2021, 9:07 PMAttributeError: 'FunctionTask' object has no attribute strftime. Did you call this object within a function that should have beendecorated with @prefect.task?
been decorated
ale
04/29/2021, 3:30 PMMatt Drago
05/01/2021, 10:25 PMpytest
results in 15 Failed tests
I figure that I have missed some steps. I'll include what I have done in the thread.Jason Prado
05/05/2021, 5:28 PMitay livni
05/24/2021, 12:31 AM0.14.18
not 0.14.19
.Michael Wheeler
05/25/2021, 12:35 PMMichael Wheeler
05/25/2021, 12:50 PMlocalhost
— specifically because the Prefect Client is only written to use the Cloud configuration, even when prefect backend server
is specified. A potential fix would have the Client read the backend configuration and adjust its initialization accordingly.Octopus
06/01/2021, 8:03 PMZach Schumacher
06/14/2021, 3:07 PMdef flow_imports_tester(root_path: Path, module_dot_path: str): # pragma: no cover
"""
Helper for testing all flows in a project root_path at module_dot_path are importable
Example:
>>> flow_imports_tester(Path("~/my_project").expanduser(), "my_project.my_directory.flows")
"""
split_dot_path = module_dot_path.split(".")
package_directory = Path(root_path, *split_dot_path)
flows = list(package_directory.iterdir())
if not flows:
raise RuntimeError("No flows found, did you specify the correct path?")
for flow in flows:
if "." in flow.name:
filename, file_extension = flow.name.split(".")
else:
filename, file_extension = flow.name, ""
if filename == "__init__" or file_extension != "py":
continue
import_module(".".join([module_dot_path, filename]))
sean williams
06/19/2021, 12:13 AMFei Meng
08/17/2021, 10:47 PMDmitry Kuleshov
08/20/2021, 1:10 PMNitay J
08/23/2021, 1:50 PMRRRuleClock
and RRuleSchedule
(which is really just a function similar to other Prefect Schedule
creators). however the flow won’t run b/c it doesn’t know how to serialize my RRuleClock
. I assume I need to write a RRuleClockSchema
so that Marshmallow will know how to serialize it. but, where I’m unclear is, it seems like I need to then add it to the type_schemas
here https://github.com/PrefectHQ/prefect/blob/a9270d965aee1e2182843e7fa75d18e1054230d0/src/prefect/serialization/schedule.py#L92. I can add to the map directly via the class, but that would obv only work locally (if at all) not on all the distributed agents. is there another way to register the RRuleClockSchema
so it can get serialized? if not it seems like I need to fork prefect code and run agents with my RRuleClock
codebase, while contributing my clock impl PR back into main branch. lmk if I’m missing something here and there’s a better way to go about thisMarvin
08/24/2021, 2:44 PMKathryn Klarich
08/24/2021, 10:55 PMMarvin
08/30/2021, 9:00 AMMarvin
09/06/2021, 9:00 AM