1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-05 15:15:44 +02:00

Update abapEnvironmentCloneGitRepo.go (#2656)

This commit is contained in:
Daniel Mieg 2021-02-26 09:27:22 +01:00 committed by GitHub
parent af65dc9076
commit 3f8a1f141b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,11 @@ func abapEnvironmentCloneGitRepo(config abapEnvironmentCloneGitRepoOptions, tele
// error situations should stop execution through log.Entry().Fatal() call which leads to an os.Exit(1) in the end
err := runAbapEnvironmentCloneGitRepo(&config, telemetryData, &autils, &client)
if err != nil {
log.Entry().Info("-------------------------------------")
log.Entry().Info("-------------------------------------")
log.Entry().Info("If the exception CX_SY_REF_IS_INITIAL occurs, please consider switching to a different strategy / step until the issue is resolved by SAP (planned for SAP BTP ABAP Environment release 2102 HFC04). Please have a look at https://www.project-piper.io/pipelines/abapEnvironment/introduction/ for more details.")
log.Entry().Info("-------------------------------------")
log.Entry().Info("-------------------------------------")
log.Entry().WithError(err).Fatal("step execution failed")
}
}