We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a950e55 commit a0215f2Copy full SHA for a0215f2
1 file changed
examples/slackbot/src/slackbot/search.py
@@ -77,6 +77,7 @@ def review_common_3x_gotchas() -> list[str]:
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.",
79
"Workers (f.k.a. agents) poll for scheduled runs, whereas task workers are websocket clients that executed backgrounded task runs",
80
+ "To avoid interactivity in the Prefect CLI, use the TOP LEVEL --no-prompt flag, e.g. `prefect --no-prompt deploy ...`",
81
]
82
print(tips)
83
return tips
0 commit comments