Skip to content

Commit 6a9c15e

Browse files
committedFeb 6, 2014
spec/runner: try to fix some weird tunnel failures
1 parent dc146cd commit 6a9c15e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎spec/runner.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@
55

66
# setup tunnel
77
begin
8-
File.open('tunnel.jar', 'w') {|f|
8+
File.open('BrowserStackTunnel.jar', 'w') {|f|
99
f.write RestClient.get('http://www.browserstack.com/BrowserStackTunnel.jar').to_str
1010
}
1111

12-
tunnel = IO.popen 'java -jar tunnel.jar $BS_AUTHKEY localhost,9292,0 -tunnelIdentifier $TRAVIS_JOB_ID'
12+
tunnel = IO.popen 'java -jar BrowserStackTunnel.jar $BS_AUTHKEY localhost,9292,0 -tunnelIdentifier $TRAVIS_JOB_ID'
1313

1414
loop do
1515
break if tunnel.gets.start_with? 'You can now access'
1616
end
17+
rescue
18+
retry
1719
end
1820

1921
# configure based on environment variables

0 commit comments

Comments
 (0)
Please sign in to comment.