Skip to content

Commit

Permalink
Release 1.0.8 (#173)
Browse files Browse the repository at this point in the history
* add build stage for release branch

* rename build stage for master branch

* remove additional mvn build on stages

* feat(core) version placeholder (EWC-410)

* bug(fix) updated docker url validation (EWC-412) (#157)

* version 1.0.6

* EWC-410 version placeholder

* EWC-414 watchdog feature fix

* bug(core) fixed strace request (#162)

* EWC-421 strace feature bug

* EWC-421 strace feature fix

* Bug(fix) message bug: concurrent usage of session object which isn't thread safe (EWC-433)

* bug(fix) fixed help logs measurement (EWC-431) (#166)

* bug(fix) microservice removal: networking microservice isn't removed (EWC-424)

* Bug(fix) microservice removal: removed extra host mapping (EWC-424)

* Bug(fix) microservice removal: simplified getRunningContainers method (EWC-424)

* version 1.0.7

* Epankou/bug routes update ewc 374 (#171)

* Bug(fix) microservice removal: networking microsrevice isn't removed (EWC-424)

* Bug(fix) microservice removal: removed extra host mapping (EWC-424)

* Bug(fix) microservice removal: simplified getRunningContainers method (EWC-424)

* Bug(fix) route update: added missing method for route update (EWC-374)

* version 1.0.8 (#172)
  • Loading branch information
Railag authored and epankou committed Dec 27, 2018
1 parent 2754b72 commit e3ab6a7
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.eclipse</groupId>
<artifactId>iofog-agent</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion daemon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.eclipse</groupId>
<artifactId>iofog-agent</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions daemon/src/org/eclipse/iofog/field_agent/FieldAgent.java
Original file line number Diff line number Diff line change
Expand Up @@ -294,13 +294,13 @@ private void verificationFailed() {

if (microserviceConfig) {
processMicroserviceConfig(microservices);
LocalApi.getInstance().update();
}

if (routing) {
processRoutes(microservices);
MessageBus.getInstance().update();
}

LocalApi.getInstance().update();
}
if (changes.getBoolean("tunnel") && !initialization) {
sshProxyManager.update(getProxyConfig());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ public void handle(ChannelHandlerContext ctx, HttpRequest req) {

WebSocketMap.addWebsocket('C', id, ctx);
StatusReporter.setLocalApiStatus().setOpenConfigSocketsCount(WebSocketMap.controlWebsocketMap.size());

}

/**
Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ private void deleteOldAgentMicroservices() {
*/
private void deleteObsoleteAgentMicroservices(Set<Microservice> allAgentMicroservices) {
docker.getRunningIofogContainers().stream()
.filter(container -> docker.getContainerName(container).startsWith(IOFOG_DOCKER_CONTAINER_NAME_PREFIX))
.map(container -> docker.getContainerMicroserviceUuid(container))
.filter(microserviceUuid -> allAgentMicroservices.stream()
.noneMatch(microservice -> microservice.getMicroserviceUuid().equals(microserviceUuid)))
Expand Down
2 changes: 1 addition & 1 deletion iofog_version_controller/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<artifactId>iofog-agent</artifactId>
<groupId>org.eclipse</groupId>
<version>1.0.7</version>
<version>1.0.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse</groupId>
<artifactId>iofog-agent</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
<name>iofog-agent</name>
<packaging>pom</packaging>

Expand Down

0 comments on commit e3ab6a7

Please sign in to comment.