Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: set function as disabled #1611

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Conversation

paaragon
Copy link
Collaborator

@paaragon paaragon commented Apr 4, 2025

Summary

This PR introduces two new attributes to the Program model:

disabled (BooleanField): Flags whether the program is currently disabled.
disabled_message (TextField, optional): A custom message returned when a disabled program is attempted to be run.

If a program is marked as disabled, any attempt to run it will now return an HTTP 423 Locked response, along with the disabled_message if provided. This prevents new jobs from being launched for disabled programs.

Details and comments

  • Added disabled and disabled_message fields to the Program model.
  • Updated the /run endpoint to check for disabled before enqueuing a job.
  • Return HTTP 423 with a message when a disabled program is requested.

Copy link
Collaborator

@korgan00 korgan00 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants