spec: fix incorrect default value for KAPOW_DATAAPI_URL
This caused ghost failures when running the tests.
This commit is contained in:
@@ -60,7 +60,7 @@ environment variables:
|
|||||||
* ``KAPOW_SERVER_CMD``: The full command line to start a non-interactive
|
* ``KAPOW_SERVER_CMD``: The full command line to start a non-interactive
|
||||||
listening kapow server. By default: ``kapow server``
|
listening kapow server. By default: ``kapow server``
|
||||||
* ``KAPOW_CONTROLAPI_URL``: URL of the Control API. By default: ``http://localhost:8081``
|
* ``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``
|
* ``KAPOW_USER_URL``: URL of the User Server. By default: ``http://localhost:8080``
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ class Env(EnvironConfig):
|
|||||||
KAPOW_CONTROLAPI_URL = StringVar(default="http://localhost:8081")
|
KAPOW_CONTROLAPI_URL = StringVar(default="http://localhost:8081")
|
||||||
|
|
||||||
#: Where the Data API is
|
#: 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
|
#: Where the User Interface is
|
||||||
KAPOW_USER_URL = StringVar(default="http://localhost:8080")
|
KAPOW_USER_URL = StringVar(default="http://localhost:8080")
|
||||||
|
|||||||
Reference in New Issue
Block a user