File tree Expand file tree Collapse file tree
rust/operator-binary/src/crd/role Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ impl AnyConfig {
403403
404404 // Logging config is distinct between each role, due to the different enum types,
405405 // so provide helpers for containers that are common between all roles.
406- pub fn kafka_logging ( & self ) -> Cow < ContainerLogConfig > {
406+ pub fn kafka_logging ( & ' _ self ) -> Cow < ' _ , ContainerLogConfig > {
407407 match self {
408408 AnyConfig :: Broker ( node) => node. logging . for_container ( & broker:: BrokerContainer :: Kafka ) ,
409409 AnyConfig :: Controller ( node) => node
@@ -412,7 +412,7 @@ impl AnyConfig {
412412 }
413413 }
414414
415- pub fn vector_logging ( & self ) -> Cow < ContainerLogConfig > {
415+ pub fn vector_logging ( & ' _ self ) -> Cow < ' _ , ContainerLogConfig > {
416416 match & self {
417417 AnyConfig :: Broker ( broker_config) => broker_config
418418 . logging
You can’t perform that action at this time.
0 commit comments