Skip to content

Commit

Permalink
[release] v0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
azukaar committed Oct 24, 2023
1 parent 72436c7 commit 8a5e261
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Version 0.11.3
- Fix missing even subscriber on export

## Version 0.11.2
- Improve Docker exports logs

## Version 0.11.1
- fix issue exporting text user node

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.11.2",
"version": "0.11.3",
"description": "",
"main": "test-server.js",
"bugs": {
Expand Down
14 changes: 7 additions & 7 deletions src/docker/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,36 +102,36 @@ func DebouncedExportDocker() {
func onDockerStarted(containerID string) {
utils.Debug("onDockerStarted: " + containerID)
BootstrapContainerFromTags(containerID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

func onDockerDestroyed(containerID string) {
utils.Debug("onDockerDestroyed: " + containerID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

func onNetworkDisconnect(networkID string) {
utils.Debug("onNetworkDisconnect: " + networkID)
DebouncedNetworkCleanUp(networkID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

func onDockerCreated(containerID string) {
utils.Debug("onDockerCreated: " + containerID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

func onNetworkDestroy(networkID string) {
utils.Debug("onNetworkDestroy: " + networkID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

func onNetworkCreate(networkID string) {
utils.Debug("onNetworkCreate: " + networkID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

func onNetworkConnect(networkID string) {
utils.Debug("onNetworkConnect: " + networkID)
// DebouncedExportDocker()
DebouncedExportDocker()
}

0 comments on commit 8a5e261

Please sign in to comment.