This is an automated email from the ASF dual-hosted git repository.
olli pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event.git
The following commit(s) were added to refs/heads/master by this push:
new c7f074f fix typo
c7f074f is described below
commit c7f074f6d10440253eda8f6315c81cd493c78342
Author: Oliver Lietz <[email protected]>
AuthorDate: Fri May 4 15:25:39 2018 +0200
fix typo
---
.../sling/event/impl/jobs/config/JobManagerConfiguration.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/src/main/java/org/apache/sling/event/impl/jobs/config/JobManagerConfiguration.java
b/src/main/java/org/apache/sling/event/impl/jobs/config/JobManagerConfiguration.java
index 45ecc3b..b633dc2 100644
---
a/src/main/java/org/apache/sling/event/impl/jobs/config/JobManagerConfiguration.java
+++
b/src/main/java/org/apache/sling/event/impl/jobs/config/JobManagerConfiguration.java
@@ -473,7 +473,7 @@ public class JobManagerConfiguration {
this.topologyCapabilities = null;
// stop all listeners
- this.notifiyListeners();
+ this.notifyListeners();
}
logger.debug("Job processing stopped");
}
@@ -499,7 +499,7 @@ public class JobManagerConfiguration {
final CheckTopologyTask mt = new CheckTopologyTask(this);
mt.fullRun();
- notifiyListeners();
+ notifyListeners();
} else {
// and run checker again in some seconds (if leader)
// notify listeners afterwards
@@ -511,7 +511,7 @@ public class JobManagerConfiguration {
public void run() {
if ( newCaps == topologyCapabilities &&
newCaps.isActive()) {
// start listeners
- notifiyListeners();
+ notifyListeners();
if ( newCaps.isLeader() && newCaps.isActive() ) {
final CheckTopologyTask mt = new
CheckTopologyTask(JobManagerConfiguration.this);
mt.fullRun();
@@ -526,7 +526,7 @@ public class JobManagerConfiguration {
/**
* Notify all listeners
*/
- private void notifiyListeners() {
+ private void notifyListeners() {
synchronized ( this.listeners ) {
final TopologyCapabilities caps = this.topologyCapabilities;
for(final ConfigurationChangeListener l : this.listeners) {
--
To stop receiving notification emails like this one, please contact
[email protected].