Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #351 from containscafeine/fix_dc_error_message
Browse files Browse the repository at this point in the history
fix error message for creating DeploymentConfig
  • Loading branch information
surajssd authored Oct 13, 2017
2 parents 7789119 + d884752 commit d152705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/spec/deploymentconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (deploymentConfig *DeploymentConfigSpecMod) Transform() ([]runtime.Object,
// Create the DeploymentConfig controller!
deploy, err := deploymentConfig.createOpenShiftController()
if err != nil {
return nil, nil, errors.Wrap(err, "failed to create Kubernetes Deployment controller")
return nil, nil, errors.Wrap(err, "failed to create DeploymentConfig controller")
}

// adding controller objects
Expand Down

0 comments on commit d152705

Please sign in to comment.