Update pkg/controller/che/oauth_initial_htpasswd_provider.go

Co-authored-by: Anatolii Bazko <abazko@redhat.com>
pull/597/head
Oleksandr Andriienko 2021-02-09 18:00:25 +02:00 committed by GitHub
parent fa58bbd4d6
commit ef793b31eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func (iuh *OpenShiftOAuthUserOperatorHandler) generateHtPasswdUserInfo(userName
}
if len(iuh.runnable.GetStdErr()) > 0 {
return "", errorMsg.New("Failed to generate htpasswd info for initial identity provider: " + iuh.runnable.GetStdErr())
return "", errorMsg.New("Failed to generate data for HTPasswd identity provider: " + iuh.runnable.GetStdErr())
}
return iuh.runnable.GetStdOut(), nil
}