Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/deploy/strategy/recreate/recreate.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (s *RecreateDeploymentStrategy) updateReplicas(namespace, name string, repl
for {
select {
case <-timeout:
return fmt.Errorf("Couldn't successfully update deployment %s replica count to %d (timeout exceeded)", deployment.Name, replicaCount)
return fmt.Errorf("Couldn't successfully update deployment %s/%s replica count to %d (timeout exceeded)", namespace, name, replicaCount)
default:
if deployment, err = s.client.getReplicationController(namespace, name); err != nil {
glog.Errorf("Couldn't get deployment %s/%s: %v", namespace, name, err)
Expand Down