Skip to content

Commit

Permalink
Use named redis interfaces for indico
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirp committed Nov 21, 2023
1 parent 73f7ccb commit 5b95cac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/new_relations/test_new_relations.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,8 @@ async def test_indico_datatabase(ops_test: OpsTest) -> None:
await ops_test.model.deploy("redis-k8s", channel="stable", application_name="redis-broker")
await ops_test.model.deploy("redis-k8s", channel="stable", application_name="redis-cache")
await asyncio.gather(
ops_test.model.relate("redis-broker", "indico"),
ops_test.model.relate("redis-cache", "indico"),
ops_test.model.relate("redis-broker", "indico:redis-broker"),
ops_test.model.relate("redis-cache", "indico:redis"),
)

# Wait for model to stabilise
Expand Down

0 comments on commit 5b95cac

Please sign in to comment.