Skip to content

Commit

Permalink
config: amends config
Browse files Browse the repository at this point in the history
* Changing default reana_server_url value from None to valid url,
  because initialization of SwaggerClient with swagger_spec.api_url
  as None fails.

Signed-off-by: Rokas Maciulaitis <rokas.maciulaitis@cern.ch>
Co-authored-by: Diego Rodriguez <diego.rodriguez@cern.ch>
  • Loading branch information
Rokas Maciulaitis and Diego Rodriguez committed Nov 5, 2018
1 parent 96bacdd commit 7447fb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.rst
Expand Up @@ -5,4 +5,5 @@ The list of contributors in alphabetical order:

- `Diego Rodriguez <https://orcid.org/0000-0003-0649-2002>`_
- `Dinos Kousidis <https://orcid.org/0000-0002-4914-4289>`_
- `Rokas Maciulaitis <https://orcid.org/0000-0003-1064-6967>`_
- `Tibor Simko <https://orcid.org/0000-0001-7202-5803>`_
2 changes: 1 addition & 1 deletion reana_commons/config.py
Expand Up @@ -49,7 +49,7 @@
port=os.getenv('WORKFLOW_CONTROLLER_SERVICE_PORT_HTTP', '5000')),
'reana_workflow_controller.json'),
'reana-server': (
os.getenv('REANA_SERVER_URL', None),
os.getenv('REANA_SERVER_URL', '0.0.0.0'),
'reana_server.json'),
'reana-job-controller': (
'http://{address}:{port}'.format(
Expand Down

0 comments on commit 7447fb7

Please sign in to comment.