smartcloud 0.0.76 → 0.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/smartcloud/grids/runner.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a7e84d08f852a4809f34208dcd6b3bb38663bf85290ca29eecbb5a50d49481b
|
|
4
|
+
data.tar.gz: dfe67248b3dee860230791ce8c894c81b0a371d55bf85d22fac0d51eee0a2411
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0f71862d5a7ae2b2c19d14818bdd4a2c2675fbdbce0a3627c06df2e8dac8516db85027b5ce292ffc9ad0f7d45da882890a589e89d798beb694de6e6e2a0cf92
|
|
7
|
+
data.tar.gz: efb634b8dfe719b910405aa835c1fc846fc84f7e2bb6e0f330fe54f70c385ccdca452d439aefce12981a445de3cf6d777b20205a596b1457c5e2b8c036a13048
|
|
@@ -307,7 +307,7 @@ module Smartcloud
|
|
|
307
307
|
|
|
308
308
|
# These two lines are important to stop and remove container and then cancel pre-receive push if finally the app could not be started.
|
|
309
309
|
# If the app was finally started, then these two lines should never be executed.
|
|
310
|
-
|
|
310
|
+
self.stop_app(appname)
|
|
311
311
|
exit 1
|
|
312
312
|
end
|
|
313
313
|
|
|
@@ -364,7 +364,8 @@ module Smartcloud
|
|
|
364
364
|
system("docker network connect solr-network #{appname}")
|
|
365
365
|
system("docker network connect mysql-network #{appname}")
|
|
366
366
|
|
|
367
|
-
system("docker start
|
|
367
|
+
system("docker start #{appname}")
|
|
368
|
+
system("docker logs #{appname} --follow")
|
|
368
369
|
end
|
|
369
370
|
end
|
|
370
371
|
end
|