Skip to content
Snippets Groups Projects
Commit 18ec4754 authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Enabled services for test.

parent 6dfefc92
No related branches found
No related tags found
No related merge requests found
Pipeline #36893 failed
......@@ -4,10 +4,10 @@ image: python:3.6
# additional services needed, the versions are matching the production machine
# the services will be accessible under the hostnames: "postgres" and "mongo"
# services:
# - rabbitmq
# - docker.elastic.co/elasticsearch/elasticsearch:6.3.2
# - mongo:latest
services:
- rabbitmq
- docker.elastic.co/elasticsearch/elasticsearch:6.3.2
- mongo:latest
variables:
NOMAD_RABBIT_HOST: rabbitmq
......
......@@ -26,7 +26,7 @@ FilesConfig = namedtuple(
""" API independent configuration for the object storage. """
CeleryConfig = namedtuple('Celery', ['broker_url'])
""" Used to configure the RabbitMQ and Redis backends for celery. """
""" Used to configure the RabbitMQ for celery. """
FSConfig = namedtuple('FSConfig', ['tmp', 'objects'])
""" Used to configure file stystem access. """
......@@ -54,10 +54,7 @@ rabbit_host = os.environ.get('NOMAD_RABBITMQ_HOST', 'localhost')
rabbit_port = os.environ.get('NOMAD_RABBITMQ_PORT', None)
rabbit_user = 'rabbitmq'
rabbit_password = 'rabbitmq'
redis_host = os.environ.get('NOMAD_REDIS_HOST', 'localhost')
rabbit_url = 'pyamqp://%s:%s@%s//' % (rabbit_user, rabbit_password, rabbit_host)
redis_url = 'redis://%s/0' % redis_host
celery = CeleryConfig(
broker_url=rabbit_url
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment