From c4792e222259487aef608218431cc31650735567 Mon Sep 17 00:00:00 2001 From: Endre Karlson Date: Wed, 24 Dec 2014 12:21:13 +0100 Subject: [PATCH] Fix wrong port for API and doc refs Change-Id: I3820a4696c5241355dedda957820ce3b8fe40119 --- cue/api/__init__.py | 2 +- doc/source/getting-started.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cue/api/__init__.py b/cue/api/__init__.py index 87a92520..d420b662 100644 --- a/cue/api/__init__.py +++ b/cue/api/__init__.py @@ -22,7 +22,7 @@ API_SERVICE_OPTS = [ default='0.0.0.0', help='The listen IP for the Cue API server.'), cfg.IntOpt('port', - default=6385, + default=8795, help='The port for the Cue API server.'), cfg.IntOpt('max_limit', default=1000, diff --git a/doc/source/getting-started.rst b/doc/source/getting-started.rst index bda7e5b6..a5d3b113 100644 --- a/doc/source/getting-started.rst +++ b/doc/source/getting-started.rst @@ -193,7 +193,7 @@ You'll now be seeing the log from the api service. Exercising the API ================== -.. note:: If you have a firewall enabled, make sure to open port 53, as well as Cue's default port (6385). +.. note:: If you have a firewall enabled, make sure to open port 53, as well as Cue's default port (8795). Using a web browser, curl statement, or a REST client, calls can be made to the Cue API using the following format where “command” is any of the commands listed in the :doc:`rest`