Hi everyone,
I’m experiencing an issue with my project where the live property remains false even after successfully unpausing and redeploying.
What I’ve done
- My project was paused, so I called
POST /v1/projects/{id}/unpausewhich returned200 OK - The
pausedproperty correctly flipped tofalse - I deployed to production — deployment status is
READY
Current state (from GET /v9/projects/{id})
paused: false✓live: false✗
My questions
- What exactly does
live: falsemean vspaused: false? Are they independent properties? - Does
live: falseprevent cron jobs from firing? - How can I get
liveback totrue?
I have cron jobs configured on this project and I’m concerned they may not be running while live is false.
I’ve already tried redeploying to production but live remains false. It seems like the unpause didn’t fully restore the project state.
Any help would be appreciated!