Skip to content

Commit

Permalink
fix(litestream): fix ytt syntax
Browse files Browse the repository at this point in the history
Everything preceeded by a # is considered a ytt, so "comments" were
throwing it off.
  • Loading branch information
djwhitt committed May 20, 2024
1 parent 70d407d commit 0745892
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions litestream/litestream.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dbs:
forcePathStyle: true
sync-interval: 1s
snapshot-interval: 24h
retention: 168h # 7 days
retention: 168h
- path: /app/data/sqlite/data.db
replicas:
- type: s3
Expand All @@ -25,7 +25,7 @@ dbs:
forcePathStyle: true
sync-interval: 1s
snapshot-interval: 24h
retention: 168h # 7 days
retention: 168h
- path: /app/data/sqlite/moderation.db
replicas:
- type: s3
Expand All @@ -35,7 +35,7 @@ dbs:
forcePathStyle: true
sync-interval: 1s
snapshot-interval: 24h
retention: 168h # 7 days
retention: 168h
- path: /app/data/sqlite/bundles.db
replicas:
- type: s3
Expand All @@ -45,4 +45,4 @@ dbs:
forcePathStyle: true
sync-interval: 1s
snapshot-interval: 24h
retention: 168h # 7 days
retention: 168h

0 comments on commit 0745892

Please sign in to comment.