Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dockerzhang committed Dec 14, 2020
1 parent 8f0c792 commit a8f9c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kafka-impl/conf/kop.conf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ offsetsTopicNumPartitions=8
maxReadEntriesNum=5

# Zookeeper path for storing kop consumer group
groupIdZooKeeperPath="/client_group_id"
groupIdZooKeeperPath=/client_group_id

### --- KoP SSL configs--- ###

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void createPath(ZooKeeper zooKeeper, String zkPath, String subPath
try {
if (zooKeeper.exists(zkPath, false) == null) {
zooKeeper.create(zkPath,
data, ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
}
String addSubPath = zkPath + subPath;
if (zooKeeper.exists(addSubPath, false) == null) {
Expand Down

0 comments on commit a8f9c5d

Please sign in to comment.