← Lesson
Boring Ops Is the Goal
Joeven
Run
Reset
Python loads on first run
def ready(ops): need = [ "queue", "job_store", "trace_store", "kill_switch", "ci_gate", "redaction", "tenant_filter", "playbook", ] missing = [k for k in need if not ops.get(k)] return {"ready": not missing, "missing": missing} print("demo", ready({"queue": True, "job_store": True})) print("prod", ready({ "queue": True, "job_store": True, "trace_store": True, "kill_switch": True, "ci_gate": True, "redaction": True, "tenant_filter": True, "playbook": True, })) print("boring is the goal")
Run to execute this in your browser. Nothing is sent to a server.