Change default port for savanna api to 8386.

Since 8080 (the current default) is likely to be used
by other things.  Choose a new unassigned port as the
default.

Change-Id: I8bee3d880167e19810d06e7740842e930f06f9fb
Fixes: bug 1199226
This commit is contained in:
Trevor McKay
2013-07-09 14:58:09 -04:00
parent 9bc44b60e4
commit f7d6497788
6 changed files with 6 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ from oslo.config import cfg
cli_opts = [
cfg.StrOpt('host', default='',
help='Hostname of IP address that will be used to listen on'),
cfg.IntOpt('port', default=8080,
cfg.IntOpt('port', default=8386,
help='Port that will be used to listen on'),
cfg.BoolOpt('log-exchange', default=False,
help='Log request/response exchange details: environ, '