Skip to content

Commit

Permalink
Merge branch 'release-2.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasLiampotis committed Jun 30, 2023
2 parents e4ceca5 + 3496966 commit 02e7a57
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.8.1] - 2023-06-30

## Fixed

- Check if voPersonCertificateIssuerDN exists during the preparation of data for job scheduler


## [v2.8.0] - 2023-05-24

# Added
Expand Down
4 changes: 3 additions & 1 deletion lib/User/OrgIdentity.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,9 @@ public function insertJobToComanage($coId, $identifier, $job_data): bool
}
if(!empty($job_data['voPersonCertificateDN'])){
$data['voPersonCertificateDN'] = array(implode(";", $job_data['voPersonCertificateDN']));
$data['voPersonCertificateIssuerDN'] = array(implode(";", $job_data['voPersonCertificateIssuerDN']));
if(!empty($job_data['voPersonCertificateIssuerDN'])){
$data['voPersonCertificateIssuerDN'] = array(implode(";", $job_data['voPersonCertificateIssuerDN']));
}
}
$fields = ['co_id', 'job_type', 'job_params', 'job_data', 'failure_summary', 'tries', 'created'];

Expand Down

0 comments on commit 02e7a57

Please sign in to comment.