Skip to content

Commit

Permalink
fixes #119 add schema registry auto register schemas to true by defau…
Browse files Browse the repository at this point in the history
…lt (#120)
  • Loading branch information
stevehu authored Nov 15, 2021
1 parent 8c4b3f5 commit 25e96fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kafka-common/src/test/resources/config/kafka-consumer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ properties:
group.id: ${kafka-consumer.group.id:group1}
# Schema registry url
schema.registry.url: ${kafka-consumer.schema.registry.url:http://localhost:8081}
# Schema registry auto register schema indicator for streams application. If true, the first request will register the schema auto automatically.
schema.registry.auto.register.schemas: ${kafka-streams.schema.registry.auto.register.schemas:true}
# Schema registry client truststore location, use the following two properties only if schema registry url is https.
# schema.registry.ssl.truststore.location: ${kafka-consumer.schema.registry.ssl.truststore.location:/config/client.truststore}
# Schema registry client truststore password
Expand Down
2 changes: 2 additions & 0 deletions kafka-common/src/test/resources/config/kafka-producer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ properties:
schema.registry.url: ${kafka-producer.schema.registry.url:http://localhost:8081}
# Schema registry identity cache size
schema.registry.cache: ${kafka-producer.schema.registry.cache:100}
# Schema registry auto register schema indicator for streams application. If true, the first request will register the schema auto automatically.
schema.registry.auto.register.schemas: ${kafka-streams.schema.registry.auto.register.schemas:true}
# Schema registry client truststore location, use the following two properties only if schema registry url is https.
# schema.registry.ssl.truststore.location: ${kafka-producer.schema.registry.ssl.truststore.location:/config/client.truststore}
# Schema registry client truststore password
Expand Down
2 changes: 2 additions & 0 deletions kafka-common/src/test/resources/config/kafka-streams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ properties:
application.id: ${kafka-streams.application.id:placeholder}
# Schema registry url
schema.registry.url: ${kafka-streams.schema.registry.url:http://localhost:8081}
# Schema registry auto register schema indicator for streams application. If true, the first request will register the schema auto automatically.
schema.registry.auto.register.schemas: ${kafka-streams.schema.registry.auto.register.schemas:true}
# Schema registry client truststore location, use the following two properties only if schema registry url is https.
# schema.registry.ssl.truststore.location: ${kafka-streams.schema.registry.ssl.truststore.location:/config/client.truststore}
# Schema registry client truststore password
Expand Down

0 comments on commit 25e96fb

Please sign in to comment.