We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c50af commit a50e6afCopy full SHA for a50e6af
1 file changed
src/progressive_automations_python/prefect_flows.py
@@ -23,13 +23,15 @@ def deploy_move_desk_flow(deployment_name: str = "move-desk"):
23
24
# Create deployment using the correct API
25
deployment = move_to_height.to_deployment(
26
- name=deployment_name
+ name=deployment_name,
27
+ work_pool_name="desk-lifter-pool"
28
)
29
30
# Deploy it
31
deployment_id = deployment.apply()
32
33
print(f"✅ Deployment '{deployment_name}' created with ID: {deployment_id}")
34
+ print(f"Work pool: desk-lifter-pool")
35
print(f"To run: prefect deployment run 'move-to-height/{deployment_name}' --param target_height=30")
36
print(f"Parameter: target_height (float, in inches)")
37
0 commit comments