fix: hidden batch_time for mongodb
This commit is contained in:
parent
c7bfaf51fd
commit
9639a977a3
|
@ -74,6 +74,11 @@ fields("creation_opts") ->
|
|||
importance => ?IMPORTANCE_HIDDEN,
|
||||
converter => fun(_, _) -> 1 end,
|
||||
desc => ?DESC("batch_size")
|
||||
}},
|
||||
{batch_time, #{
|
||||
importance => ?IMPORTANCE_HIDDEN,
|
||||
converter => fun(_, _) -> 0 end,
|
||||
desc => ?DESC("batch_size")
|
||||
}}
|
||||
]);
|
||||
fields(action) ->
|
||||
|
@ -102,6 +107,11 @@ fields(action_resource_opts) ->
|
|||
importance => ?IMPORTANCE_HIDDEN,
|
||||
converter => fun(_, _) -> 1 end,
|
||||
desc => ?DESC("batch_size")
|
||||
}},
|
||||
{batch_time, #{
|
||||
importance => ?IMPORTANCE_HIDDEN,
|
||||
converter => fun(_, _) -> 0 end,
|
||||
desc => ?DESC("batch_size")
|
||||
}}
|
||||
]);
|
||||
fields(resource_opts) ->
|
||||
|
|
Loading…
Reference in New Issue