-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fallback to trying to create bucket without LocationConstraint #690
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #690 +/- ##
==========================================
+ Coverage 71.82% 71.84% +0.02%
==========================================
Files 13 13
Lines 3219 3229 +10
Branches 477 478 +1
==========================================
+ Hits 2312 2320 +8
- Misses 791 793 +2
Partials 116 116 ☔ View full report in Codecov by Sentry. |
b3ff9f4
to
67512fc
Compare
9dbdd02
to
58064df
Compare
…ev (#251) This fixes an issue where it fails due to trying to install an older version which no longer exists. See https://github.com/canonical/postgresql-operator/actions/runs/12155829148/job/33898208024 for canonical/postgresql-operator#690 ![OQQmarvpBu](https://github.com/user-attachments/assets/de1bd37b-db24-499d-a425-182cdfe4d460) ``` Reading package lists... Building dependency tree... Reading state information... Suggested packages: postgresql-doc-14 The following NEW packages will be installed: libpq-dev 0 upgraded, 1 newly installed, 0 to remove and 26 not upgraded. Need to get 148 kB of archives. After this operation, 589 kB of additional disk space will be used. Ign:1 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libpq-dev arm64 14.13-0ubuntu0.22.04.1 Err:1 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libpq-dev arm64 14.13-0ubuntu0.22.04.1 404 Not Found [IP: 185.125.190.39 80] E: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/pool/main/p/postgresql-14/libpq-dev_14.13-0ubuntu0.22.04.1_arm64.deb 404 Not Found [IP: 185.125.190.39 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? Error: Process completed with exit code 100. ``` Where it tries `14.13-0ubuntu0.22.04.1`, but per https://launchpad.net/ubuntu/+source/postgresql-14, it's at `14.15-0ubuntu0.22.04.1`. One other solution is to ensure we always use the daily images.
258b3d3
to
924af8a
Compare
Looks like I'll need to wait for #692 as well |
924af8a
to
5703059
Compare
09b900e
to
8b48898
Compare
8b48898
to
c13e470
Compare
Any updates on this? As it is right now, even with manually creating the bucket, I can't get backups to be created - |
Not all S3 implementations support LocationConstraint. This falls back to trying to create the bucket when
InvalidLocationConstraint
encountered.#689