You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/schema/generated/jsonschema/types/AppConfigV1.schema.json
+20-1
Original file line number
Diff line number
Diff line change
@@ -555,6 +555,24 @@
555
555
"action": {
556
556
"$ref": "#/definitions/JobAction"
557
557
},
558
+
"jitter_percent_max": {
559
+
"description": "Maximum percent of \"jitter\" to introduce between invocations.\n\nValue range: 0-100\n\nJitter is used to spread out jobs over time. The calculation works by multiplying the time between invocations by a random amount, and taking the percentage of that random amount.\n\nSee also [`Self::jitter_percent_min`] to set a minimum jitter.",
560
+
"type": [
561
+
"integer",
562
+
"null"
563
+
],
564
+
"format": "uint8",
565
+
"minimum": 0.0
566
+
},
567
+
"jitter_percent_min": {
568
+
"description": "Minimum \"jitter\" to introduce between invocations.\n\nValue range: 0-100\n\nJitter is used to spread out jobs over time. The calculation works by multiplying the time between invocations by a random amount, and taking the percentage of that random amount.\n\nIf not specified while `jitter_percent_max` is, it will default to 10%.\n\nSee also [`Self::jitter_percent_max`] to set a maximum jitter.",
569
+
"type": [
570
+
"integer",
571
+
"null"
572
+
],
573
+
"format": "uint8",
574
+
"minimum": 0.0
575
+
},
558
576
"max_schedule_drift": {
559
577
"description": "Don't start job if past the due time by this amount, instead opting to wait for the next instance of it to be triggered.",
0 commit comments