Skip to content
This repository has been archived by the owner on Sep 29, 2021. It is now read-only.

Commit

Permalink
Fix log messages re: deployment group timeouts (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
caipre committed Nov 20, 2017
1 parent 02f158b commit d3d7524
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -972,14 +972,14 @@ private boolean isRolloutTimedOut(final ZooKeeperClient client,
} catch (KeeperException e) {
// statusPath doesn't exist or some other ZK issue. probably this deployment group
// was removed.
log.warn("error determining deployment group modification time: {}", groupName, e);
log.warn("error determining deployment group modification time: name={}", groupName, e);
return false;
}

if (secondsSinceDeploy > groupTimeoutSetting) {
log.info("rolling-update on deployment-group name={} has timed out after "
+ "{} seconds (rolloutOptions.timeout={})",
secondsSinceDeploy, groupTimeoutSetting);
groupName, secondsSinceDeploy, groupTimeoutSetting);
return true;
}
return false;
Expand Down

0 comments on commit d3d7524

Please sign in to comment.