Vincent Frey created SLING-7731:
-----------------------------------
Summary: Call to addService is no longer needed for modification
events in SlingAuthenticatorServiceListener
Key: SLING-7731
URL: https://issues.apache.org/jira/browse/SLING-7731
Project: Sling
Issue Type: Bug
Components: Authentication
Affects Versions: Auth Core 1.3.18
Reporter: Vincent Frey
After introduction of modifiedService(...) method in
SlingAuthenticatorServiceListener, calling addService(...) is no longer needed
for modification event.
[https://github.com/apache/sling-org-apache-sling-auth-core/blob/master/src/main/java/org/apache/sling/auth/core/impl/SlingAuthenticatorServiceListener.java#L85]
Therefore line 85 should be changed from:
{code}
if ((event.getType() & (ServiceEvent.REGISTERED | ServiceEvent.MODIFIED)) != 0)
{
{code}
to:
{code}
if ((event.getType() & ServiceEvent.REGISTERED) != 0) {
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)