Skip to content

Commit

Permalink
Fix schema version definition in understanding-configuration (#1369)
Browse files Browse the repository at this point in the history
On [this
page](https://docs.hazelcast.com/hazelcast/latest/configuration/understanding-configuration#static-configuration)
the configuration references a schema named
`hazelcast-config-5.5.2.xsd`, but the schemas are [actually only
major-minor
versioned](https://github.com/hazelcast/hazelcast/tree/master/hazelcast/src/main/resources).
  • Loading branch information
JackPGreen authored Nov 25, 2024
1 parent 5249b03 commit 91124d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The following topics are also relevant to static configuration:
- xref:pattern-matcher.adoc[Configuration Pattern Matcher]
- xref:using-wildcards.adoc[Using Wildcards]

NOTE: Hazelcast performs schema validation through the `hazelcast-config-{full-version}.xsd` file,
NOTE: Hazelcast performs schema validation through the `hazelcast-config-{minor-version}.xsd` file,
which comes with Hazelcast libraries. If an error occurs in declarative or programmatic configuration, Hazelcast throws a meaningful exception.

Static configuration cannot be changed at runtime. However, you can add <<dynamic-configuration, dynamic configuration>> for some features.
Expand Down

0 comments on commit 91124d4

Please sign in to comment.