summaryrefslogtreecommitdiff
path: root/service/pixelated/config/args.py
diff options
context:
space:
mode:
authorPatrick Maia <pixelated-team+pmaia@thoughtworks.com>2014-12-03 14:56:10 -0300
committerPatrick Maia <pmaia@thoughtworks.com>2014-12-03 15:11:15 -0300
commit17fab38c4cf5711db9d7d5f2c0c850846c6d5728 (patch)
tree751f31a71caea5918e9b38cb35ae23023d3514fc /service/pixelated/config/args.py
parent7594b311441ca0c0eee39b4e953c52645213ffc3 (diff)
Card #149 - does not open two ports when running with SSL
Diffstat (limited to 'service/pixelated/config/args.py')
-rw-r--r--service/pixelated/config/args.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/service/pixelated/config/args.py b/service/pixelated/config/args.py
index de47996a..d08df929 100644
--- a/service/pixelated/config/args.py
+++ b/service/pixelated/config/args.py
@@ -24,7 +24,6 @@ def parse():
parser.add_argument('--dispatcher-stdin', help='run in organization mode, the credentials will be read from stdin', default=False, action='store_true', dest='dispatcher_stdin')
parser.add_argument('--host', default='127.0.0.1', help='the host to run the user agent on')
parser.add_argument('--port', type=int, default=3333, help='the port to run the user agent on')
- parser.add_argument('--ssl-port', type=int, default=3433, help='the port to run the user agent with SSL support')
parser.add_argument('-c', '--config', metavar='<configfile>', default=None, help='use specified file for credentials (for test purposes only)')
parser.add_argument('-sk', '--sslkey', metavar='<server.key>', default=None, help='use specified file for SSL key')
parser.add_argument('-sc', '--sslcert', metavar='<server.pem>', default=None, help='use specified file for SSL certificate')