Skip to content

Commit

Permalink
Fix format of shared.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarros committed Sep 21, 2024
1 parent aa16b3e commit 606a579
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tasks/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ class DatabaseType(str, Enum):
INFRAHUB_USE_NATS = bool(os.getenv("INFRAHUB_USE_NATS", False))

DATABASE_DOCKER_IMAGE = os.getenv("DATABASE_DOCKER_IMAGE", None)
MEMGRAPH_DOCKER_IMAGE = os.getenv(
"MEMGRAPH_DOCKER_IMAGE", "memgraph/memgraph-mage:1.19-memgraph-2.19-no-ml"
)
MEMGRAPH_DOCKER_IMAGE = os.getenv("MEMGRAPH_DOCKER_IMAGE", "memgraph/memgraph-mage:1.19-memgraph-2.19-no-ml")
NEO4J_DOCKER_IMAGE = os.getenv("NEO4J_DOCKER_IMAGE", "neo4j:5.19.0-enterprise")
MESSAGE_QUEUE_DOCKER_IMAGE = os.getenv(
"MESSAGE_QUEUE_DOCKER_IMAGE", "rabbitmq:3.13.7-management" if not INFRAHUB_USE_NATS else "nats:2.10.14-alpine"
Expand Down

0 comments on commit 606a579

Please sign in to comment.