Skip to content

Commit

Permalink
Repair publish call during ACL save
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaky212 committed Dec 1, 2022
1 parent 5a612eb commit aa267c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 4.2.2
**Bugfix**
- Repair publish call during ACL save (this is already fixed in develop 4.4)

## 4.2.1
**Bugfixex**
**Bugfix**
- Ignore ACS locations that do not have the HTTP-POST Binding. #561

## 4.2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function handle(UpdateEntityAclCommand $command)
$allowedIdps = new AllowedIdentityProviders($idps, $command->isSelectAll());
$entity->getAllowedIdentityProviders()->merge($allowedIdps);
try {
$this->publishClient->publish($entity, 'ACL');
$this->publishClient->publish($entity, $entity, 'ACL');
} catch (PublishMetadataException $e) {
$this->logger->error(
sprintf(
Expand Down

0 comments on commit aa267c8

Please sign in to comment.