Skip to content

Commit ed0e6a1

Browse files
committed
Fix config prop name in gRPC client and server
The config prop name was mismatched in the both the gRPC client and server modules additional-spring-configuration-metadata.json files. This makes them consistent using the singular form of the property `spring.grpc.(client|server).observation.enabled`. Signed-off-by: onobc <chris.bono@gmail.com>
1 parent 549d7ad commit ed0e6a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

module/spring-boot-grpc-client/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"defaultValue": true
2121
},
2222
{
23-
"name": "spring.grpc.client.observations.enabled",
23+
"name": "spring.grpc.client.observation.enabled",
2424
"type": "java.lang.Boolean",
2525
"description": "Whether to enable Observations on the client.",
2626
"defaultValue": true

module/spring-boot-grpc-server/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"defaultValue": true
2121
},
2222
{
23-
"name": "spring.grpc.server.observations.enabled",
23+
"name": "spring.grpc.server.observation.enabled",
2424
"type": "java.lang.Boolean",
2525
"description": "Whether to enable Observations on the server.",
2626
"defaultValue": true

0 commit comments

Comments
 (0)