Skip to content

Commit

Permalink
refactor: update log level
Browse files Browse the repository at this point in the history
  • Loading branch information
deng authored and deng committed Jun 22, 2020
1 parent b2d516b commit b43cc65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public boolean refreshNodeList() {
if (path.startsWith(blobPrefix)) {
path = path.substring(blobPrefix.length());
}
logger.info("alive endpoint {}", path);
logger.debug("alive endpoint {}", path);
String[] parts = path.split(":");
if (parts.length != 2) {
logger.warn("invalid endpoint {}", path);
Expand Down
2 changes: 2 additions & 0 deletions onebox/start_onebox_on_rambuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,15 @@ BLOB1=$IP:9720
--tablet_offline_check_interval=1\
--tablet_heartbeat_timeout=1\
--zk_root_path=/onebox > ns1.log 2>&1 &
sleep 2

# start ns2
../build/bin/rtidb --endpoint=${NS2} --role=nameserver \
--zk_cluster=${ZK_CLUSTER}\
--tablet_offline_check_interval=1\
--tablet_heartbeat_timeout=1\
--zk_root_path=/onebox > ns2.log 2>&1 &
sleep 2

# start ns3
../build/bin/rtidb --endpoint=${NS3} --role=nameserver \
Expand Down

0 comments on commit b43cc65

Please sign in to comment.