]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
restful: Use port 8003
authorBoris Ranto <branto@redhat.com>
Thu, 18 May 2017 14:29:30 +0000 (16:29 +0200)
committerBoris Ranto <branto@redhat.com>
Mon, 22 May 2017 17:21:27 +0000 (19:21 +0200)
This allows us to run both calamari and the rest api at the same time.

Signed-off-by: Boris Ranto <branto@redhat.com>
src/pybind/mgr/restful/module.py

index 0f47463ebecc166840c78b6a3ae4711d85a40524..71c9d26b3d8c5274db925728b72e2991f55206d1 100644 (file)
@@ -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),
         )