[release] v0.1.17

- disable network cleaning until rewrite
This commit is contained in:
Yann Stepienik 2023-04-18 16:52:19 +01:00
parent c3401064c6
commit f19c939265
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.1.16", "version": "0.1.17",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {

View file

@ -222,6 +222,7 @@ func ConnectToNetworkSync(networkName string, containerID string) error {
} }
func NetworkCleanUp() { func NetworkCleanUp() {
return
DockerNetworkLock <- true DockerNetworkLock <- true
defer func() { <-DockerNetworkLock }() defer func() { <-DockerNetworkLock }()