Skip to content

Commit 6b2b95e

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 <[email protected]>
1 parent 76ac9fb commit 6b2b95e

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)