Skip to content

Commit

Permalink
hardcode snap channels for pg and pgb
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasgameiroborges committed Oct 9, 2024
1 parent a78e496 commit 3c80f64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cli/data_platform_workflows_cli/update_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def fetch_postgresql_snaps(charm_revision) -> list[Snap]:
result.append(Snap(
name=snap_name,
revision=int(snap_info["revision"]["x86_64"]),
push_channel=snap_info["channel"],
push_channel="14/stable",
))
return result
else:
Expand All @@ -178,7 +178,7 @@ def fetch_pgbouncer_snaps(charm_revision) -> list[Snap]:
result.append(Snap(
name=snap_name,
revision=int(snap_info["revision"]["x86_64"]),
push_channel=snap_info["channel"],
push_channel="1/stable",
))
return result
else:
Expand Down

0 comments on commit 3c80f64

Please sign in to comment.