Add more information to on conflict for gateway PE linkId (#3054)

This commit is contained in:
Ben Vesel 2023-07-31 14:13:11 -04:00 коммит произвёл GitHub
Родитель 058a214e38
Коммит 940e5a04e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -269,7 +269,7 @@ func (m *manager) ensureGatewayCreate(ctx context.Context) error {
if !strings.EqualFold(gwyDoc.ID, m.doc.OpenShiftCluster.ID) ||
!strings.EqualFold(gwyDoc.Gateway.ImageRegistryStorageAccountName, m.doc.OpenShiftCluster.Properties.ImageRegistryStorageAccountName) ||
!strings.EqualFold(gwyDoc.Gateway.StorageSuffix, m.doc.OpenShiftCluster.Properties.StorageSuffix) {
return errors.New("gateway record already exists for a different cluster")
return fmt.Errorf("gateway record '%s' already exists for a different cluster '%s'", linkIdentifier, gwyDoc.ID)
}
}