Updating upper limit on aircraft data retention.
This commit is contained in:
parent
65619c3a00
commit
d338c81831
|
|
@ -77,25 +77,25 @@ class DecodingSettingsController(SettingsFormController):
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"adsb_ttl",
|
"adsb_ttl",
|
||||||
"ADSB reports expiration time",
|
"ADSB reports expiration time",
|
||||||
validator=RangeValidator(30, 360000),
|
validator=RangeValidator(30, 1000000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"vdl2_ttl",
|
"vdl2_ttl",
|
||||||
"VDL2 reports expiration time",
|
"VDL2 reports expiration time",
|
||||||
validator=RangeValidator(30, 360000),
|
validator=RangeValidator(30, 1000000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"hfdl_ttl",
|
"hfdl_ttl",
|
||||||
"HFDL reports expiration time",
|
"HFDL reports expiration time",
|
||||||
validator=RangeValidator(30, 360000),
|
validator=RangeValidator(30, 1000000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
NumberInput(
|
NumberInput(
|
||||||
"acars_ttl",
|
"acars_ttl",
|
||||||
"ACARS reports expiration time",
|
"ACARS reports expiration time",
|
||||||
validator=RangeValidator(30, 360000),
|
validator=RangeValidator(30, 1000000),
|
||||||
append="s",
|
append="s",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue