Browse Source

Specify revel's app server host as 0.0.0.0 (#3060)

Without this change, as of recently, revel is acting as though requests
are restricted to localhost, which doesn't work in setups where the load
generating client (wrk) is on a different machine.

There haven't been any changes to the revel test code recently, so this
must be a change in the revel framework or one of the libraries we're
using.  I notice that revel's setup.sh grabs a few dependencies from
github and doesn't seem to specify a commit, tag, or version...
Michael Hixson 7 years ago
parent
commit
592b326125
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/Go/revel/src/benchmark/conf/app.conf

+ 1 - 1
frameworks/Go/revel/src/benchmark/conf/app.conf

@@ -1,5 +1,5 @@
 app.name=benchmark
-http.addr=
+http.addr=0.0.0.0
 http.port=8080
 
 db.driver = mysql