From: Boris Ranto Date: Thu, 18 May 2017 14:29:30 +0000 (+0200) Subject: restful: Use port 8003 X-Git-Tag: ses5-milestone6~9^2~47^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=32dafc8591096b2fdedde72a1a11a037f6b81af4;p=ceph.git restful: Use port 8003 This allows us to run both calamari and the rest api at the same time. Signed-off-by: Boris Ranto --- diff --git a/src/pybind/mgr/restful/module.py b/src/pybind/mgr/restful/module.py index 0f47463ebec..71c9d26b3d8 100644 --- a/src/pybind/mgr/restful/module.py +++ b/src/pybind/mgr/restful/module.py @@ -233,7 +233,7 @@ class Module(MgrModule): # Create the HTTPS werkzeug server serving pecan app self.server = make_server( host='0.0.0.0', - port=8002, + port=8003, app=make_app('restful.api.Root'), ssl_context=(cert, pkey), )