We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0215f2 commit 06c2c01Copy full SHA for 06c2c01
1 file changed
examples/slackbot/src/slackbot/search.py
@@ -75,7 +75,8 @@ def review_common_3x_gotchas() -> list[str]:
75
"futures must be resolved by passing them to another task, returning them or manually calling .result() or .wait()",
76
"agents are replaced by workers in prefect 3.x, work pools replace the infra blocks from prefect.infrastructure",
77
"prefect 3.x uses pydantic 2 and server data from prefect 2.x is not compatible with 3.x",
78
- "Deployment.build_from_flow() is removed in 3.x, use some_flow.from_source(...).deploy(...) instead.",
+ "Deployment.build_from_flow() IS COMPLETELY REMOVED IN 3.x, use some_flow.from_source(...).deploy(...) instead.",
79
+ "`prefect deployment build ...` IS COMPLETELY REMOVED IN 3.x, use `prefect deploy ...` instead",
80
"Workers (f.k.a. agents) poll for scheduled runs, whereas task workers are websocket clients that executed backgrounded task runs",
81
"To avoid interactivity in the Prefect CLI, use the TOP LEVEL --no-prompt flag, e.g. `prefect --no-prompt deploy ...`",
82
]
0 commit comments