Skip to content

Commit

Permalink
COMPX-10828: YARN-11162. Set the zk acl for nodes created by ZKConfig…
Browse files Browse the repository at this point in the history
…urationStore. (apache#4350)

Change-Id: I1edea7ba875cd0d473485b785e3aec957645ebcb
  • Loading branch information
omalley authored and tomicooler committed Jun 28, 2022
1 parent d6ce289 commit 106365c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -252,7 +252,7 @@ public List<LogMutation> getConfirmedConfHistory(long fromId) {
private boolean createNewZkPath(String path) throws Exception {
if (!zkManager.exists(path)) {
try {
zkManager.create(path);
zkManager.create(path, zkAcl);
} catch(NodeExistsException e) {
LOG.warn(NODEEXISTS_MSG, e);
return false;
Expand Down

0 comments on commit 106365c

Please sign in to comment.