spec: fix incorrect default value for KAPOW_DATAAPI_URL

This caused ghost failures when running the tests.
This commit is contained in:
pancho horrillo
2019-10-30 17:39:19 +01:00
parent 275db5ef91
commit c3180e3e7d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ environment variables:
* ``KAPOW_SERVER_CMD``: The full command line to start a non-interactive
listening kapow server. By default: ``kapow server``
* ``KAPOW_CONTROLAPI_URL``: URL of the Control API. By default: ``http://localhost:8081``
* ``KAPOW_DATAAPI_URL``: URL of the Data API. By default: ``http://localhost:8080``
* ``KAPOW_DATAAPI_URL``: URL of the Data API. By default: ``http://localhost:8082``
* ``KAPOW_USER_URL``: URL of the User Server. By default: ``http://localhost:8080``
+1 -1
View File
@@ -47,7 +47,7 @@ class Env(EnvironConfig):
KAPOW_CONTROLAPI_URL = StringVar(default="http://localhost:8081")
#: Where the Data API is
KAPOW_DATAAPI_URL = StringVar(default="http://localhost:8081")
KAPOW_DATAAPI_URL = StringVar(default="http://localhost:8082")
#: Where the User Interface is
KAPOW_USER_URL = StringVar(default="http://localhost:8080")