From 12a83ea00687197c425116e1618468c0a1c33720 Mon Sep 17 00:00:00 2001 From: DanielMieg Date: Thu, 16 May 2024 10:00:45 +0200 Subject: [PATCH] Update error message --- pkg/abaputils/abaputils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/abaputils/abaputils.go b/pkg/abaputils/abaputils.go index a36d6142fc..caf6cb9938 100644 --- a/pkg/abaputils/abaputils.go +++ b/pkg/abaputils/abaputils.go @@ -59,7 +59,7 @@ func (abaputils *AbapUtils) GetAbapCommunicationArrangementInfo(options AbapEnvi connectionDetails.Password = options.Password } else { if options.CfAPIEndpoint == "" || options.CfOrg == "" || options.CfSpace == "" || options.CfServiceInstance == "" || options.CfServiceKeyName == "" { - var err = errors.New("Parameters missing. Please provide EITHER the Host of the ABAP server OR the Cloud Foundry ApiEndpoint, Organization, Space and Service Instance") + var err = errors.New("Parameters missing. Please provide EITHER the Host of the ABAP server OR the Cloud Foundry API Endpoint, Organization, Space, Service Instance and Service Key") log.SetErrorCategory(log.ErrorConfiguration) return connectionDetails, err }