Skip to content

Commit

Permalink
Bump to v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian S. committed Jun 21, 2020
1 parent d3e0f59 commit 91f7045
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<license.year>2020</license.year>
<bundle.version>1.0.7.${maven.build.timestamp}</bundle.version>
<bundle.version>1.0.8.${maven.build.timestamp}</bundle.version>
</properties>

<organization>
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/de/csdev/ebus/core/EBusControllerBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,11 @@ protected void fireOnEBusConnectionStatusChange(ConnectionStatus status) {
return;
}

// only run on a real status change
if (getConnectionStatus() == status) {
return;
}

if (threadPool == null || threadPool.isTerminated()) {
logger.warn("ThreadPool not ready!");
return;
Expand Down

0 comments on commit 91f7045

Please sign in to comment.