Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhoon committed Dec 9, 2024
1 parent 9f09821 commit b4942ad
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private void watchService() {
logger.warn("[{}/{}] Failed to start the service watcher.", namespace, serviceName, e);
return;
}
// Recheck the closed flag because the watchService() method may take a while.
// Recheck the closed flag because the doWatchService() method may take a while.
if (closed) {
newServiceWatch.close();
} else {
Expand Down Expand Up @@ -372,7 +372,7 @@ private void watchPod() {
logger.warn("[{}/{}] Failed to start the pod watcher.", namespace, serviceName, e);
return;
}
// Recheck the closed flag because the watchPod() method may take a while.
// Recheck the closed flag because the doWatchPod() method may take a while.
if (closed) {
newPodwatch.close();
} else {
Expand Down Expand Up @@ -458,7 +458,7 @@ private void watchNode() {
return;
}
final Watch newNodeWatch = doWatchNode();
// Recheck the closed flag because the watchNode() method may take a while.
// Recheck the closed flag because the doWatchNode() method may take a while.
if (closed) {
newNodeWatch.close();
} else {
Expand Down

0 comments on commit b4942ad

Please sign in to comment.