From 6b0b883d210869f4b0bcbcb6f6fcfaa3c2f291cc Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Thu, 19 Oct 2023 13:41:56 +0200 Subject: [PATCH] Move rustdoc above field attributes --- rust/crd/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/crd/src/lib.rs b/rust/crd/src/lib.rs index 1d2daf91..b50d9c90 100644 --- a/rust/crd/src/lib.rs +++ b/rust/crd/src/lib.rs @@ -843,8 +843,8 @@ pub struct NameNodeConfig { pub logging: Logging, #[fragment_attrs(serde(default))] pub affinity: StackableAffinity, - #[fragment_attrs(serde(default))] /// Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details. + #[fragment_attrs(serde(default))] pub graceful_shutdown_timeout: Option, } @@ -1011,8 +1011,8 @@ pub struct DataNodeConfig { pub logging: Logging, #[fragment_attrs(serde(default))] pub affinity: StackableAffinity, - #[fragment_attrs(serde(default))] /// Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details. + #[fragment_attrs(serde(default))] pub graceful_shutdown_timeout: Option, } @@ -1170,8 +1170,8 @@ pub struct JournalNodeConfig { pub logging: Logging, #[fragment_attrs(serde(default))] pub affinity: StackableAffinity, - #[fragment_attrs(serde(default))] /// Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details. + #[fragment_attrs(serde(default))] pub graceful_shutdown_timeout: Option, }