From 960d78bc1097dc63411ba75c1598a4c4128d9b3a Mon Sep 17 00:00:00 2001 From: Andrew Herrington Date: Fri, 7 Jan 2022 20:47:21 -0600 Subject: [PATCH] default schedule to None --- src/healthchecks_io/schemas/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/healthchecks_io/schemas/checks.py b/src/healthchecks_io/schemas/checks.py index c443849..fccfb7f 100644 --- a/src/healthchecks_io/schemas/checks.py +++ b/src/healthchecks_io/schemas/checks.py @@ -83,7 +83,7 @@ class CheckCreate(BaseModel): lte=31536000, ) schedule: Optional[str] = Field( - "* * * * *", + None, description="A cron expression defining this check's schedule. " "If you specify both timeout and schedule parameters, " "Healthchecks.io will create a Cron check and ignore the "