summaryrefslogtreecommitdiff
path: root/tests/dictserver.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dictserver.py.in')
-rwxr-xr-xtests/dictserver.py.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/dictserver.py.in b/tests/dictserver.py.in
index 5a8dc3ed4..9f2cc984b 100755
--- a/tests/dictserver.py.in
+++ b/tests/dictserver.py.in
@@ -33,7 +33,7 @@ def dictserver(options):
with open(options.pidfile, "w") as f:
f.write("{0}".format(pid))
- local_bind = (HOST, options.port)
+ local_bind = (options.host, options.port)
log.info("[DICT] Listening on %s", local_bind)
# Need to set the allow_reuse on the class, not on the instance.
@@ -83,6 +83,8 @@ def get_options():
parser.add_argument("--port", action="store", default=9016,
type=int, help="port to listen on")
+ parser.add_argument("--host", action="store", default=HOST,
+ help="host to listen on")
parser.add_argument("--verbose", action="store", type=int, default=0,
help="verbose output")
parser.add_argument("--pidfile", action="store",