Skip to content

Commit

Permalink
Merge branch '6/edge' into shard-removal-test
Browse files Browse the repository at this point in the history
  • Loading branch information
MiaAltieri committed Oct 27, 2023
2 parents eac5377 + 3dcab70 commit b37093c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release to latest/edge
name: Release to 6/edge

on:
push:
Expand All @@ -19,7 +19,7 @@ jobs:
name: Build charm
uses: canonical/data-platform-workflows/.github/workflows/build_charm_without_cache.yaml@v5
with:
charmcraft-snap-channel: "latest/edge"
charmcraft-snap-channel: "latest/stable"

release:
name: Release charm
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/sharding_tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def verify_data_mongodb(client, db_name, coll_name, key, value) -> bool:
def get_cluster_shards(mongos_client) -> set:
"""Returns a set of the shard members."""
shard_list = mongos_client.admin.command("listShards")
curr_members = [member["_id"] for member in shard_list["shards"]]
curr_members = [member["host"].split("/")[0] for member in shard_list["shards"]]
return set(curr_members)


Expand Down

0 comments on commit b37093c

Please sign in to comment.