You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Scalingo 1.20.0, and I have an issue while trying to download the most recent backup and output it to stdout, this way I can easily uncompress it with tar and import SQL statements to pg_restore.
You can reproduce by running:
scalingo -a <project_name> --region osc-fr1 --addon <addon_id> backups-download --output - > database
head database
You can see Selected the most recent backup at the first line:
I'm not familiar with the source code or with Go, but it looks like this message is written before writers have been configured.
As a current workaround, I won't use --output - but the classical way (--output my_file.tar.gz, tar xzvf my_file.tar.gz) .
Thanks! :)
The text was updated successfully, but these errors were encountered:
Hi!
I'm using Scalingo 1.20.0, and I have an issue while trying to download the most recent backup and output it to stdout, this way I can easily uncompress it with
tar
and import SQL statements topg_restore
.You can reproduce by running:
You can see
Selected the most recent backup
at the first line:I'm not familiar with the source code or with Go, but it looks like this message is written before writers have been configured.
As a current workaround, I won't use
--output -
but the classical way (--output my_file.tar.gz
,tar xzvf my_file.tar.gz
) .Thanks! :)
The text was updated successfully, but these errors were encountered: