Skip to content

Commit

Permalink
The make fix-volume operation does not need an interactive terminal.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri committed Sep 11, 2024
1 parent a27a4f1 commit 19e6826
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/follow-9.6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OPTS = --env-file=../paths.env $(VOLUMES)
CLEANUP = make -f /var/lib/postgres/cleanup.mk

fix-volumes:
docker run --rm -it $(OPTS) $(CNAME) $(CLEANUP)
docker run --rm $(OPTS) $(CNAME) $(CLEANUP)

attach:
docker run --rm -it $(OPTS) $(CNAME) bash
Expand Down
2 changes: 1 addition & 1 deletion tests/follow-data-only/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ OPTS = --env-file=../paths.env $(VOLUMES)
CLEANUP = make -f /var/lib/postgres/cleanup.mk

fix-volumes:
docker run --rm -it $(OPTS) $(CNAME) $(CLEANUP)
docker run --rm $(OPTS) $(CNAME) $(CLEANUP)

attach:
docker run --rm -it $(OPTS) $(CNAME) bash
Expand Down
2 changes: 1 addition & 1 deletion tests/follow-wal2json/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ OPTS = --env-file=../paths.env $(VOLUMES)
CLEANUP = make -f /var/lib/postgres/cleanup.mk

fix-volumes:
docker run --rm -it $(OPTS) $(CNAME) $(CLEANUP)
docker run --rm $(OPTS) $(CNAME) $(CLEANUP)

attach:
docker run --rm -it $(OPTS) $(CNAME) bash
Expand Down

0 comments on commit 19e6826

Please sign in to comment.