Skip to content

Commit

Permalink
Remove proxy from Gatling configuration until version 2.1.8 is out to…
Browse files Browse the repository at this point in the history
… fix the proxy bug
  • Loading branch information
tvenhola committed Jan 14, 2016
1 parent f3d96ce commit eeb86a4
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ object TestConfiguration {
val proxyHost: String = System.getProperty("proxyHost")
val noProxyFor: Seq[String] = System.getProperty("noProxyFor").split(',')
val httpConf = http
.proxy(Proxy(proxyHost, 80)
.httpsPort(80))
.noProxyFor(noProxyFor: _*)
// TODO: enable proxy when 2.1.8 version is out - see https://github.com/gatling/gatling/issues/2795
// .proxy(Proxy(proxyHost, 80)
// .httpsPort(80))
// .noProxyFor(noProxyFor: _*)
.baseURL(baseUrl)
.header("Cookie", "testusername=tarutest")
.header("OAM_REMOTE_USER", TestConfiguration.username)
Expand Down

0 comments on commit eeb86a4

Please sign in to comment.