Compare commits

...

2 Commits

Author SHA1 Message Date
Mauro Mugnaini 8e5c8b90ca
Updating also last not-saved `README` 2024-04-19 13:45:36 +02:00
Mauro Mugnaini e178d5a916
Fixed typo in log pattern 2024-04-19 13:44:39 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for "event-listener-provider"
## [v2.24.0-SNAPSHOT]
Revised implementation, now both `admin` and `d4science` realms are configured by default as interesting realms.
Completely rewrote the implementation and configuration method, now both `admin` and `d4science` realms are configured by default as interesting realms.
Added specific SPI configurations with `spi-events-listener-orchestrator-event-publisher-` prefix: `include-realms`, `exclude-realms`, `include-admin-types`, `exclude-admin-types`, `include-events` and `exclude-events`
Now the minor part of the version (the `24` in the `2.24.x`) shows the compatibility to the specific Keycloak major version, in this case `24.x.x`

View File

@ -71,7 +71,7 @@ public class OrchestratorEventPublisherProvider extends AbstractEventPublisher
this.orchestratorAudience = orchestratorAudience;
// Creating every time a new sender to be sure new settings are used, if changed
this.setEventSender(newEventSender(realmName));
logger.tracef("Created new instance for realm: %s. Admin events: %2. Events:", realmName,
logger.tracef("Created new instance for realm: %s. Admin events: %s. Events:", realmName,
interestingAdminEventResourceTypes, interestingEvents);
}