Skip to content

Commit 204e01d

Browse files
authored
Merge branch 'master' into semoal/upgrade-deps-pg18
2 parents db7ca12 + 19b3e13 commit 204e01d

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
username: ${{ secrets.DOCKERHUB_USERNAME }}
2525
password: ${{ secrets.DOCKERHUB_TOKEN }}
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929
-

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: "Build"
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- uses: actions/setup-go@v6
2020
with:
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333

3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636

3737
- uses: actions/setup-go@v6
3838
with:
@@ -48,7 +48,7 @@ jobs:
4848
name: "Staticcheck"
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252

5353
- uses: actions/setup-go@v6
5454
with:
@@ -64,7 +64,7 @@ jobs:
6464
name: "Errcheck"
6565
runs-on: ubuntu-latest
6666
steps:
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868

6969
- uses: actions/setup-go@v6
7070
with:

config/haproxy.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@ backend bk_db
3434
option httpchk GET /flycheck/role
3535
http-check expect string primary
3636
http-check disable-on-404
37+
server-template primary 10 $PRIMARY_REGION.$FLY_APP_NAME.internal:5433 check port 5500 resolvers flydns resolve-prefer ipv6 init-addr none on-marked-down shutdown-sessions
3738
server-template pg 10 $FLY_APP_NAME.internal:5433 check port 5500 resolvers flydns resolve-prefer ipv6 init-addr none on-marked-down shutdown-sessions
3839
server pg [$PG_LISTEN_ADDRESS]:5433 check backup port 5500 on-marked-down shutdown-sessions

internal/flypg/barman_restore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type BarmanRestore struct {
2828

2929
const (
3030
defaultRestoreDir = "/data/postgresql"
31-
waitOnRecoveryTimeout = 10 * time.Minute
31+
waitOnRecoveryTimeout = 60 * time.Minute
3232
)
3333

3434
func NewBarmanRestore(configURL string) (*BarmanRestore, error) {

0 commit comments

Comments
 (0)