devicefarm 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/devicefarm/devicefarmapi.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8c1c59f65966f9096029a332eec71f9fa786f40
|
4
|
+
data.tar.gz: 12e481bb7998adc40a8e6105688e97c7d275228a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4aa2583ab81b725df01cfd49197239e0eac85c34267d49952c198b4a99fa90932a995c64b9a33873a15a86020d78f9f6339813b0401600081e7a521a8a8c881c
|
7
|
+
data.tar.gz: '0037836efe800b5c087dd9ba3318c270c4844854501e099ae839a2a49ec2bf5e51790c7220d1d6461b794e3d8f6e9fd3472f33c256c398cb77c3441688867bbf'
|
@@ -35,8 +35,10 @@ class DeviceFarm::DeviceFarmApi
|
|
35
35
|
|
36
36
|
def wait_for_upload_finish(upload)
|
37
37
|
upload_result = get_upload_result(upload)
|
38
|
+
p upload_result
|
38
39
|
while(!upload_result.status == "SUCCEEDED")
|
39
40
|
upload_result = get_upload_result(upload)
|
41
|
+
p upload_result
|
40
42
|
sleep(POLLING_INTERVAL)
|
41
43
|
end
|
42
44
|
end
|