Skip to content

Commit

Permalink
Fixed typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Sondow committed Jun 5, 2014
1 parent b910337 commit c0c2576
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions grails-app/services/com/netflix/asgard/ImageService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ class ImageService implements BackgroundProcessInitializer {
return
}

List<String> targetRoolUrls = configService.promotionTargetServerRootUrls
log.info "ImageTagReplicator starting for promotion target servers ${targetRoolUrls}"
List<String> targetRootUrls = configService.promotionTargetServerRootUrls
log.info "ImageTagReplicator starting for promotion target servers ${targetRootUrls}"

for (String promotionTargetServer in targetRoolUrls) {
for (String promotionTargetServer in targetRootUrls) {
try {
// Try to connect to promotion target server. Abort if server is unavailable.
checkServerHealth(promotionTargetServer)
Expand All @@ -264,7 +264,7 @@ class ImageService implements BackgroundProcessInitializer {
log.error "ImageTagReplicator failed for ${promotionTargetServer}", e
}
}
log.info "ImageTagReplicator done for all promotion target servers ${targetRoolUrls}"
log.info "ImageTagReplicator done for all promotion target servers ${targetRootUrls}"
} catch (Exception e) {
log.error "ImageTagReplicator failed: ${e}"
}
Expand Down

0 comments on commit c0c2576

Please sign in to comment.