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: backend/domain/config/sysconfig/schema/schema.go
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -317,6 +317,22 @@ var entryCatalog = []EntrySchema{
317
317
{ID: "flushJitterSeconds", Label: "Flush Jitter Seconds", Type: "integer", HelpText: "Randomized flush delay used to smooth write bursts toward AppOS."},
318
318
},
319
319
},
320
+
{
321
+
ID: "feeds-policy",
322
+
Title: "Feeds Policy",
323
+
Section: SectionSystem,
324
+
Source: SourceCustom,
325
+
Module: "feeds",
326
+
Key: "policy",
327
+
Fields: []FieldSchema{
328
+
{ID: "pollIntervalMinutes", Label: "Poll Interval Minutes", Type: "integer", HelpText: "Base cadence for polling active feed sources."},
329
+
{ID: "failureBackoffOneHours", Label: "Failure Backoff One Hours", Type: "integer", HelpText: "Delay after the first consecutive polling failure."},
330
+
{ID: "failureBackoffTwoHours", Label: "Failure Backoff Two Hours", Type: "integer", HelpText: "Delay after the second consecutive polling failure."},
331
+
{ID: "failureBackoffMaxHours", Label: "Failure Backoff Max Hours", Type: "integer", HelpText: "Delay after the third and later consecutive polling failures."},
0 commit comments