fix(ft): fix schema descriptions
This commit is contained in:
parent
8b13d249eb
commit
918bdcae7d
|
@ -119,9 +119,23 @@ emqx_ft_schema {
|
|||
zh: ""
|
||||
}
|
||||
label: {
|
||||
en: "GC Interval"
|
||||
en: "Max segment TTL"
|
||||
zh: ""
|
||||
}
|
||||
}
|
||||
|
||||
storage_gc_min_segments_ttl {
|
||||
desc {
|
||||
en: "Minimum TTL of a segment kept in the local file system.<br/>"
|
||||
"This is a hard limit: no segment will be garbage collected before reaching this TTL, "
|
||||
"even if some file transfer specifies a TTL less than that."
|
||||
zh: ""
|
||||
}
|
||||
label: {
|
||||
en: "Min segment TTL"
|
||||
zh: ""
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -163,6 +163,7 @@ fields(local_storage_segments_gc) ->
|
|||
mk(
|
||||
emqx_schema:duration_s(),
|
||||
#{
|
||||
desc => ?DESC("storage_gc_min_segments_ttl"),
|
||||
required => false,
|
||||
default => "5m",
|
||||
% NOTE
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
emqx_s3_schema {
|
||||
access_key_id {
|
||||
desc {
|
||||
en: "The access key id of the S3 bucket."
|
||||
en: "The access key ID of the S3 bucket."
|
||||
zh: ""
|
||||
}
|
||||
label {
|
||||
|
|
Loading…
Reference in New Issue