Jelajahi Sumber

fix missing semi-colon java example in observability documentation

Wyfrel 2 tahun lalu
induk
melakukan
3b447b938c

+ 2 - 2
docs/modules/ROOT/pages/reactive/integrations/observability.adoc

@@ -192,8 +192,8 @@ Instead, you can alter the provided `ObservationRegistry` with an `ObservationPr
 ----
 @Bean
 ObservationRegistryCustomizer<ObservationRegistry> noSpringSecurityObservations() {
-	ObservationPredicate predicate = (name, context) -> !name.startsWith("spring.security.")
-	return (registry) -> registry.observationConfig().observationPredicate(predicate)
+	ObservationPredicate predicate = (name, context) -> !name.startsWith("spring.security.");
+	return (registry) -> registry.observationConfig().observationPredicate(predicate);
 }
 ----
 

+ 1 - 1
docs/modules/ROOT/pages/servlet/integrations/observability.adoc

@@ -198,7 +198,7 @@ Instead, you can alter the provided `ObservationRegistry` with an `ObservationPr
 @Bean
 ObservationRegistryCustomizer<ObservationRegistry> noSpringSecurityObservations() {
 	ObservationPredicate predicate = (name, context) -> !name.startsWith("spring.security.");
-	return (registry) -> registry.observationConfig().observationPredicate(predicate)
+	return (registry) -> registry.observationConfig().observationPredicate(predicate);
 }
 ----