-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
Problem
The Publish Local Area H5 Files workflow (run #22779569113) fails immediately with:
Error: Specify a Modal Function or local entrypoint to run.
Root cause
modal_app/local_area.py has two @app.local_entrypoint() functions: main and main_promote. When there was only one, Modal auto-selected it. With two, modal run modal_app/local_area.py is ambiguous and Modal exits with an error.
The workflow command:
modal run modal_app/local_area.py --branch=main --num-workers=8
needs to be:
modal run modal_app/local_area.py::main --branch=main --num-workers=8
Impact
- Local area H5 files were not published
- The workflow failure also blocked visibility into the non-local-area publish pipeline
Fix
- Add
::mainto disambiguate the entrypoint - Temporarily disable automatic triggers (push/repository_dispatch) so this doesn't block other workflows until we're ready to re-run it
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels