Skip to content

Commit eb0da48

Browse files
committed
add avoidProxy to make things work in saucelabs for our CI
1 parent 2b10d56 commit eb0da48

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

java/server/src/org/openqa/grid/internal/utils/configuration/StandaloneConfiguration.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ public class StandaloneConfiguration {
7878
description = "<Integer> the timeout in seconds before the hub automatically ends a test that hasn't had any activity in the last X seconds. The browser will be released for another test to use. This typically takes care of the client crashes. For grid hub/node roles, CleanUpCycle must also be set. Default is 1800 (30 minutes)")
7979
public Integer timeout = 1800;
8080

81+
@Parameter(
82+
names = {"-avoidProxy"},
83+
description = "DO NOT USE. Hack to allow selenium 3.0 server run in saucelabs"
84+
)
85+
private Boolean avoidProxy;
86+
8187
/**
8288
* copy another configuration's values into this one if they are set.
8389
* @param other

0 commit comments

Comments
 (0)