szetszwo commented on PR #743:
URL: https://github.com/apache/ratis/pull/743#issuecomment-1250800061
@SzyWilliam , btw, the `OPTION_KEY` is missing the `PREFIX` as shown below.
Could you fix it here?
```java
+++
b/ratis-server-api/src/main/java/org/apache/ratis/server/RaftServerConfigKeys.java
@@ -179,7 +179,7 @@ public interface RaftServerConfigKeys {
LINEARIZABLE
}
- String OPTION_KEY = ".option";
+ String OPTION_KEY = PREFIX + ".option";
Option OPTION_DEFAULT = Option.DEFAULT;
static Option option(RaftProperties properties) {
Option option = get(properties::getEnum, OPTION_KEY, OPTION_DEFAULT,
getDefaultLog());
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]