Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iznauy committed Jul 27, 2021
1 parent 77e5751 commit 762afb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,9 @@ private void registerStorageEngineListener() throws Exception {
case NODE_ADDED:
case NODE_UPDATED:
data = event.getData().getData();
if (event.getData().getPath().equals(STORAGE_ENGINE_NODE_PREFIX)) {
break;
}
logger.info("storage engine meta updated " + event.getData().getPath());
logger.info("storage engine: " + new String(data));
storageEngineMeta = JsonUtils.fromJson(data, StorageEngineMeta.class);
Expand Down

This file was deleted.

0 comments on commit 762afb0

Please sign in to comment.