smartcloud 0.0.142 → 0.0.143
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/smartcloud/grids/runner.rb +3 -3
- 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: 55d7e215d9c6ea20a0f24df38421f03af814d7b15757af52f6e3ae77ae2b4b3e
|
4
|
+
data.tar.gz: 06afe1590f1baa3d9624ab6c5b429945978889ae025a5945426ae8c817d3b336
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36ce1639e12fe5232aadb0559edd143992b9ba8aa8f7fbd5b1882c3597cfa7c1ad19d0dab65b0eda0415f0cdf6fba8aaac53b63542df4e8f2c5815b0a2902114
|
7
|
+
data.tar.gz: b3bb971f66e71372ea82e6354c27fa6e3dc82036916e7a08e63bdfd169b051a63ebcf97a2c188db9d392266aede631b5d3895810121e359990ee1d30b0337acd
|
@@ -115,7 +115,7 @@ module Smartcloud
|
|
115
115
|
--build-arg DOCKER_GID=`getent group docker | cut -d: -f3` \
|
116
116
|
--build-arg USER_UID=`id -u` \
|
117
117
|
--build-arg USER_NAME=`id -un` \
|
118
|
-
#{Smartcloud.config.root_path}/lib/smartcloud/grids/grid-runner")
|
118
|
+
#{Smartcloud.config.root_path}/lib/smartcloud/grids/grid-runner", out: File::NULL)
|
119
119
|
puts "done"
|
120
120
|
end
|
121
121
|
end
|
@@ -218,12 +218,12 @@ module Smartcloud
|
|
218
218
|
end
|
219
219
|
|
220
220
|
def self.prereceive_app(appname, username, oldrev, newrev, refname)
|
221
|
-
$stdout.sync = true
|
221
|
+
# $stdout.sync = true
|
222
222
|
logger = Logger.new($stdout)
|
223
223
|
|
224
224
|
5.times do
|
225
225
|
puts '.'
|
226
|
-
$stdout.flush
|
226
|
+
# $stdout.flush
|
227
227
|
sleep(1)
|
228
228
|
end
|
229
229
|
|