From 1bc3fc85ab2d2a8d413894c75394ef46a0f22d59 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 18 Aug 2021 22:06:10 +0200 Subject: [PATCH] Add todo --- dump_postgres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump_postgres.go b/dump_postgres.go index fded4b9..a1cf431 100644 --- a/dump_postgres.go +++ b/dump_postgres.go @@ -43,7 +43,7 @@ func (d *PostgresDumper) Dump() error { connStr := fmt.Sprintf("postgresql://%s:%s@%s:%s/%s", user, pw, host, port, db) - // TODO: Check postgres image version and use the correct pg_dump + // TODO: Check postgres image version and use the correct pg_dump --> Test! return runAndSaveCommand(getDumpFilename(d.Container.Name), "pg_dump", "--dbname", connStr) }